Skip to content

Commit

Permalink
moving loggers to the new splunk-ready logging support in the spylunk…
Browse files Browse the repository at this point in the history
…ing project
  • Loading branch information
jay-johnson committed Jun 22, 2018
1 parent 6319986 commit 50e6295
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion network_pipeline/build_training_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import numpy as np
import pandas as pd
from celery_connectors.utils import ev
from network_pipeline.log.setup_logging import build_colorized_logger
from spylunking.log.setup_logging import build_colorized_logger
from network_pipeline.consts import VALID
from network_pipeline.consts import INVALID
from network_pipeline.consts import ERROR
Expand Down
2 changes: 1 addition & 1 deletion network_pipeline/record_packets_to_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pandas as pd
from pandas.io.json import json_normalize
from celery_connectors.utils import ev
from network_pipeline.log.setup_logging import build_colorized_logger
from spylunking.log.setup_logging import build_colorized_logger
from network_pipeline.utils import ppj
from network_pipeline.utils import rnow
from network_pipeline.build_packet_key import build_packet_key
Expand Down
2 changes: 1 addition & 1 deletion network_pipeline/scripts/capture_arp.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import scapy.all as scapy
from celery_connectors.utils import ev
from network_pipeline.log.setup_logging import build_colorized_logger
from spylunking.log.setup_logging import build_colorized_logger
from network_pipeline.handle_packets import handle_packets


Expand Down
2 changes: 1 addition & 1 deletion network_pipeline/scripts/capture_icmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import scapy.all as scapy
from celery_connectors.utils import ev
from network_pipeline.log.setup_logging import build_colorized_logger
from spylunking.log.setup_logging import build_colorized_logger
from network_pipeline.handle_packets import handle_packets


Expand Down
2 changes: 1 addition & 1 deletion network_pipeline/scripts/capture_ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import scapy.all as scapy
from celery_connectors.utils import ev
from network_pipeline.log.setup_logging import build_colorized_logger
from spylunking.log.setup_logging import build_colorized_logger
from network_pipeline.handle_packets import handle_packets


Expand Down
2 changes: 1 addition & 1 deletion network_pipeline/scripts/capture_tcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import scapy.all as scapy
from celery_connectors.utils import ev
from network_pipeline.log.setup_logging import build_colorized_logger
from spylunking.log.setup_logging import build_colorized_logger
from network_pipeline.handle_packets import handle_packets


Expand Down
2 changes: 1 addition & 1 deletion network_pipeline/scripts/capture_telnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import scapy.all as scapy
from celery_connectors.utils import ev
from network_pipeline.log.setup_logging import build_colorized_logger
from spylunking.log.setup_logging import build_colorized_logger
from network_pipeline.handle_packets import handle_packets


Expand Down
2 changes: 1 addition & 1 deletion network_pipeline/scripts/capture_udp.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import scapy.all as scapy
from celery_connectors.utils import ev
from network_pipeline.log.setup_logging import build_colorized_logger
from spylunking.log.setup_logging import build_colorized_logger
from network_pipeline.handle_packets import handle_packets


Expand Down
2 changes: 1 addition & 1 deletion network_pipeline/scripts/packets_rabbitmq.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from network_pipeline.consts import FORWARD_BROKER_URL
from network_pipeline.consts import FORWARD_SSL_OPTIONS
from network_pipeline.consts import FORWARD_QUEUE
from network_pipeline.log.setup_logging import build_colorized_logger
from spylunking.log.setup_logging import build_colorized_logger
from network_pipeline.record_packets_to_csv import RecordPacketsToCSV


Expand Down
2 changes: 1 addition & 1 deletion network_pipeline/scripts/packets_redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from network_pipeline.consts import FORWARD_BROKER_URL
from network_pipeline.consts import FORWARD_SSL_OPTIONS
from network_pipeline.consts import FORWARD_QUEUE
from network_pipeline.log.setup_logging import build_colorized_logger
from spylunking.log.setup_logging import build_colorized_logger
from network_pipeline.record_packets_to_csv import RecordPacketsToCSV


Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"python-owasp-zap-v2.4",
"python-dateutil<2.7.0",
"scapy-python3",
"spylunking",
"tox",
"unittest2",
"mock"
Expand All @@ -60,7 +61,7 @@ def networkpipeline_test_suite():
setup(
name="network-pipeline",
cmdclass={"build_py": build_py},
version="1.0.24",
version="1.0.25",
description="Distributed Network Packet Analysis Pipeline " +
"for Layer 2, 3 and 4 Frames",
long_description="" +
Expand Down

0 comments on commit 50e6295

Please sign in to comment.