Skip to main content

Flexible event generator

Project description

Eventum

What is Eventum

Eventum is a flexible event generator that provides synthetic data for various purposes.

The most popular tasks where Eventum is used are:

  • Generation of datasets
  • Simulation of processes in real time
  • Filling different systems with demo data
  • Testing on arbitrary data and stress testing

How it works

The working pipeline of Eventum consists of three parts:

  • Input plugin - it creates signals in time represented as timestamps
  • Event plugin - for each incoming signal, renders the event according to the template
  • Output plugin - sends generated events to specified endpoints

Thus, to launch the application you only need to set parameters for these three parts in a single configuration file.

You may notice that parts are called "plugins". It is so because in addition to using existing ones, you can develop your own plugins and use them easily.

Events Scheduling

Time modes

Eventum supports two time modes:

  • Sample mode - it is applicable when you want to generate events without reference to the present time (e.g. create a dataset)
  • Live mode - in this case, each event will be published as the present time passes event timestamp

Scheduling methods

With the variety of input plugins you can flexibly adjust when to generate the events. For example, in case when events linearly spaced in time you can use Timer input plugin for live mode and Linspace input plugin for sample mode. For more detailed uncomplicated scheduling the Cron input plugin is a great choice. If you want maximum flexibility, then just use Time patterns input plugin which offers you to operate probability distribution functions and mix them if needed.

Event Templates

Stateful rendering

In the default event plugin Eventum uses Jinja template engine. With basic use of Jinja, we cannot access variables from previous template renders. But with State API of Jinja event plugin it is easy to achieve it.

Template:

{% set id = locals.get('id', 1) %}

{
    "userID": {{ id }}
}

{% set id = locals.set('id', id + 1) %}

Output:

// first render
{
    "userID": 1,
}
// second render
{
    "userID": 2,
}

Use your own samples

It's easy to use data samples in templates because Jinja event plugin provides Sample API.

Need to change data in your events? - Just update your sample and keep template without any changes.

Template:

{% set computer = samples.computers | random %}
{% set hostname = computer[0] %}
{% set ip = computer[1] %}

{
    "sampleRow": "{{ computer }}",
    "hostname": "{{ hostname }}",
    "ip": "{{ ip }}"
}

Output:

{
    "sampleRow": "('wks02', '172.16.0.4')",
    "hostname": "wks02",
    "ip": "172.16.0.4"
}

In the above example, sample computers is accessed by its alias which is set along with the csv file path in application configuration.

Connect to reality

Eventum is not only about synthetic data. You can run subprocesses and obtain their result in templates using Subprocess API.

Template:

{% set my_name = subprocess.run('git config user.name', true) | trim %}

{
    "name": "Shell says, that I'm {{ my_name }}"
}

Output:

{
    "name": "Shell says, that I'm Nikita Reznikov"
}

Use modules

You are able to write any python function and run it from template just referencing to it. For example there is default module named rand with different functions for generating random values.

{% set ip = rand.network.ip_v4() %}

{
    "ip": "{{ ip }}"
}

Output:

{
    "ip": "244.203.128.130"
}

Content of rand.py:

...
class network:
    @staticmethod
    def ip_v4() -> str:
        """Return random IPv4 address."""
        return '.'.join(str(random.randint(0, 255)) for _ in range(4))
...

The only think you need to do to make this work is to put your python module to jinja_modules directory of Jinja event plugin. All modules in this directory are accessible from all templates.

Outputting

Send events anywhere

Direct your generated events with output plugins easily. Use different destinations like stdout, files, OpenSearch. There is also the possibility to specify multiple destination per running instance of Eventum. That gives you the flexibility to manage and utilize your data as needed.

Designing with Eventum Studio

Eventum Studio is the important part of Eventum that empowers you to develop content such as time distribution configurations and event templates in user friendly way.

Using Eventum Studio you can change parameters and visualize the result on the fly.

It's available to edit event templates, render them with pretty highlighting and even debug them by exploring state of render runs. Once you are done with it, you can save your result to file directly from Eventum Studio interface.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

eventum_core-1.0.10.tar.gz (16.0 kB view hashes)

Uploaded Source

Built Distribution

eventum_core-1.0.10-py3-none-any.whl (16.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page