Skip to content

Commit d5d0ad2

Browse files
Merge pull request #412 from splunk/release/7_2_0
Release eventgen 7.2.0. Merge to master branch.
2 parents b658ec8 + 426b9d2 commit d5d0ad2

File tree

81 files changed

+2100
-940
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+2100
-940
lines changed

.circleci/config.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: Check Code Format
2424
command: |
2525
set -e
26-
pip install "black==19.10b0" "isort>=4.3.15"
26+
pip install "black>=20.8b1" "isort>=5.4.2"
2727
make format-check
2828
- run:
2929
name: Run Tests
@@ -33,6 +33,7 @@ jobs:
3333
set -e
3434
make test
3535
no_output_timeout: 30m
36+
3637
- store_test_results:
3738
path: /home/circleci/project/tests/test-reports
3839
- store_artifacts:

dockerfiles/Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ RUN apk --no-cache upgrade && \
2929
chmod 0700 /root/.ssh && \
3030
passwd -u root && \
3131
# install dependencies of conductor2 used by perf
32-
pip2 install filelock twisted requests queuelib psutil crochet msgpack-python unidecode attrdict service_identity && \
33-
pip2 install git+https://github.com/esnme/[email protected]
32+
pip2 install filelock twisted requests queuelib ujson psutil crochet msgpack-python unidecode attrdict service_identity
3433

3534
COPY dockerfiles/sshd_config /etc/ssh/sshd_config
3635
COPY dockerfiles/entrypoint.sh /sbin/entrypoint.sh

docs/BASICS.md

+26-25
Large diffs are not rendered by default.

docs/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
**7.2.0**:
2+
3+
- Check the release note and download the package/source from [Here](https://github.com/splunk/eventgen/releases/tag/7.2.0)
4+
15
**7.1.1**:
26

37
- Check the release note and download the package/source from [Here](https://github.com/splunk/eventgen/releases/tag/7.1.1)

docs/REFERENCE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ scsEndPoint = <host>
136136
* Should be a full url to the scs endpoint
137137
138138
scsAccessToken = <token>
139-
* Should be a scs access token. Do not include "Bearer".
139+
* Should be a scs access token. Do not include "Bearer".
140140
141141
scsClientId = <id>
142142
* Optional
@@ -329,7 +329,7 @@ sampletype = raw | csv
329329
OVERRIDES FOR DEFAULT FIELDS WILL ONLY WORK WITH outputMode SPLUNKSTREAM.
330330
331331
interval = <integer>
332-
* Only valid in mode = sample
332+
* Delay between exections. This number in replay mode occurs after the replay has finished.
333333
* How often to generate sample (in seconds).
334334
* 0 means disabled.
335335
* Defaults to 60 seconds.

0 commit comments

Comments
 (0)