Skip to content

Commit

Permalink
Release 7.0.0 (#325)
Browse files Browse the repository at this point in the history
* Fix structlog dependency for app (#280)

* zipfile fix (#284)

* Fix bug 286 random token replacement (#287)

* Fix bug 286 random token replacement

* Change perdayvolume generator logic to get random token value replacement

* Versioning scheme (#278)

* [global] perDayVolume (#288)

* exclude global from perDayVolume assignment

* Address comment

* Fix security vulnerability issue (#289)

* Fix custom plugin stale docs (#290)

* Server fix (#293)

* Flag added

* server fix for count and env clean

* Fix bug 285 (#297)

* Add syslogAddHeader config directive (#296)

* Add syslog header to event in syslog mode

* timezone setting bugfix #249

* Using multiprocess pool to address the OOM issue (#301)

* Using multiprocess pool to address the OOM issue

* Fix test case fail

* Remove workerQueue unfinished tasks (#302)

* Bumped version to 6.5.2

* controller fix (#304)

* controller fix

* variable assignment fix (#306)

* add healthcheck endpoint and ping it every half an hour (#308)

* Fix security vulnerability issue reported by GitHub (#309)

* make controller also hit redis on healthcheck (#311)

* Fixed typo (#313)

* update redis version to use new functions (#318)

* Update tutorial related docs (#315)

* Revert oom fix change (#320)

* make circle ci fail when test case fails (#317)

* Add disable logging option to fix oom (#323)

* Add disable logging option to fix oom

* Fix modular input bug

* Fixing api server (#322)

* fixed multiple attributes

* debug

* Py3 upgrade (#291)

* init commit for python 3 migration

* migrate to py3 for test

* Fix import issue

* Fix test cases

* Fix jinja test case

* Fix multiprocess issue

* Fix a few warnings

* Fix test case fail

* Fix test case

* Fix cluster test cases

* Fix set_conf error

* Fix shebang

* Remove logutils lib from source

* Fix splunkstream import error

* Remove logutils from requirements.txt

* Fix build spl error

* Change code block indent

* Fix doc anchor issue

* Fix app running on Splunk 8.0 issue

* Fix xrange issue introduced by develop branch

* Fix merge bug

* Fix bug

* remove logutils

* Fix makefile bug

* Fix configparser bug

* Change filter function

* Bump version to 7.0.0

* Fix dateutil package bug
  • Loading branch information
Li Wu committed Oct 23, 2019
1 parent 0096651 commit 50fbd9c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Binary file removed splunk_eventgen/lib/python_dateutil-1.4.1-py2.7.egg
Binary file not shown.
5 changes: 0 additions & 5 deletions splunk_eventgen/lib/timeparser.py
@@ -1,18 +1,13 @@
from splunk_eventgen.lib.logging_config import logger
import datetime
import math
import os
import re
# Hack to allow distributing python modules since Splunk doesn't have setuptools
# We create the egg outside of Splunk (with a copy of python2.7 and using Python only modules
# To avoid being platform specific) and then append the egg path and import the module
# If we get a lot of these we'll move the eggs from bin to lib
#
# python-dateutil acquired from http://labix.org/python-dateutil. BSD Licensed
import sys

path_prepend = os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), 'lib')
sys.path.append(path_prepend + '/python_dateutil-1.4.1-py2.7.egg')
import dateutil.parser as dateutil_parser # noqa isort:skip


Expand Down

0 comments on commit 50fbd9c

Please sign in to comment.