diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index 4bdcda6e..1a9e62a8 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -129,7 +129,7 @@ outputMode = scsout | modinput | s2s | file | splunkstream | stdout | devnull | * If setting splunkstream, should set splunkHost, splunkPort, splunkMethod, splunkUser and splunkPassword if not Splunk embedded * If setting s2s, should set splunkHost and splunkPort - * If setting syslogout, should set syslogDestinationHost and syslogDestinationPort + * If setting syslogout, should set syslogDestinationHost and syslogDestinationPort. A UDP port listening on Splunk needs to be configured. https://docs.splunk.com/Documentation/Splunk/latest/Data/HowSplunkEnterprisehandlessyslogdata * If setting httpevent, should set httpeventServers * If setting metric_httpevent, should set httpeventServers and make sure your index is a splunk metric index diff --git a/requirements.txt b/requirements.txt index 021af017..46c88479 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,7 +13,7 @@ requests[security] ujson>=1.35 pyyaml httplib2 -jinja2 +jinja2==2.10.3 urllib3==1.24.2 pyOpenSSL flake8>=3.7.7 diff --git a/splunk_eventgen/lib/logging_config/__init__.py b/splunk_eventgen/lib/logging_config/__init__.py index 5a0e1c29..d602589b 100644 --- a/splunk_eventgen/lib/logging_config/__init__.py +++ b/splunk_eventgen/lib/logging_config/__init__.py @@ -2,7 +2,7 @@ import logging.config LOG_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..', 'logs') -DEFAULT_LOGGING_LEVEL = "DEBUG" +DEFAULT_LOGGING_LEVEL = "ERROR" LOGGING_CONFIG = { 'version': 1, @@ -76,7 +76,7 @@ 'loggers': { 'eventgen': { - 'handlers': ['console', 'eventgen_main'], + 'handlers': ['eventgen_main'], 'level': DEFAULT_LOGGING_LEVEL, 'propagate': False },