Skip to main content

2 posts tagged with "feature"

View All Tags

Eventum Compose

ยท One min read
Nikita Reznikov
Maintainer of Eventum

Since version 1.0.10 of Eventum CLI it's available to run multiple generators at once using compose files via eventum-compose tool!

Example compose config:

generators:
winlog_auth:
config: winlog_auth.yml
time_mode: live
params: { "success_ratio": 0.92 }
settings: { "timezone": "Europe/Moscow" }

winlog_iam:
config: winlog_auth.yml
time_mode: live
params: { "new_accounts_count": 7 }
settings: { }

and run it with:

eventum-compose -c winlog-generators.yml

Read more about Eventum Compose in the Configuring part.

Multi inputs

ยท One min read
Nikita Reznikov
Maintainer of Eventum

Since version 1.0.7 of Eventum CLI it's available to specify multiple input plugins in configuration!

Combining of input plugins makes scheduling even more flexible eliminating the need to run additional instances of Eventum.

Example:

input:
- cron:
expression: "*/10 17-18 * * *"
count: 1
- cron:
expression: "*/5 19-20 * * *"
count: 1