All Apps and Add-ons

Using SA Eventgen App, how do I generate the exact same count of events from the sample file?

koshyk
Super Champion

Have been using eventgen for quite some years, but still I can't figure out how to generate exactly the same events (of course timestamp and parameters changed) from a sample file.

Example, I've got a sample file with 10 events. All I need is these 10 events "sampled", just to ensure those 10 events happened in the last 1 hour. Here is a config example

# To generate 
mode = sample
sampletype = csv
backfill = -1h
earliest = -1h
latest = now
outputMode = file
fileName = /tmp/myeventGenfile.out

The above config generates the output file correctly, but the events are repeated by about 8x. So I will receive 80 events (8x cloning of original sample/seed file within matter of seconds).

Any idea to make sure it generates only 1x clone of the seed file?

PS: I tried putting options like (different combinations)

end=10   # thought it makes exactly 10 events and exit. But rather it waits to hit the timer of 10 events and multiplies
timeMultiple = 2  # This slows down, but cannot ensure exact events are output
backfill = -15min  # Played around various values

But none of the above works.

0 Karma
1 Solution

koshyk
Super Champion

The below config works

[yourstanza]
mode = sample
sampletype = csv

# backfill sufficiently
backfill = -15m
outputMode = file
fileName = /tmp/eventgen.test.log

# Interval chosen So that it won't be triggered within the time of execution
interval = 36000
earliest = -60m
latest = now

# END will determine exactly one replication
end=1

View solution in original post

0 Karma

koshyk
Super Champion

The below config works

[yourstanza]
mode = sample
sampletype = csv

# backfill sufficiently
backfill = -15m
outputMode = file
fileName = /tmp/eventgen.test.log

# Interval chosen So that it won't be triggered within the time of execution
interval = 36000
earliest = -60m
latest = now

# END will determine exactly one replication
end=1
0 Karma

coccyx
Path Finder

As I recall (been a while since I wrote it), Eventgen doesn't have a concept of "ending", it will always keep generating new data. What is your interval and count set to? Eventgen will generate count events every interval. What you're seeing most likely is that it is generating multiple intervals of events. By default, count=0, which means to use the whole file. With that default, what you're seeing is that every interval it'll keep just putting the whole file out.

koshyk
Super Champion

@coccyx thanks mate. I have count=0 (as it is default). So was thinking how to end it after 1st iteration. So what you are saying is to increase interval to a large value and cancel it out (or kill process) after x seconds?

0 Karma

coccyx
Path Finder

Default interval is 60 seconds. Yes, if you want to generate one and only one copy, set the interval up to an impossibly high number.

https://github.com/splunk/eventgen/blob/develop/splunk_eventgen/default/eventgen.conf#L22

It should be noted, you may find gogen to be a better experience and it supports the concept of ending after a number of intervals.

https://github.com/coccyx/gogen

0 Karma

koshyk
Super Champion

thanks again mate. If you can put the comment as an Answer, I will mark it as answer and upvote. Cheers again for your help

0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...