Eventum Logo

Eventum

Input

static

Input plugin that emits a fixed number of timestamps all at once.

Emits a fixed number of timestamps all at once — no scheduling, no time range. All timestamps use the current time. This is the simplest input plugin, useful for generating datasets in sample mode.

Parameters

ParameterTypeDefaultConstraintsDescription
countintegerRequired. > 0Number of timestamps to emit.
tagslist of strings[]Tags attached to every timestamp. Accessible in templates via tags.

Examples

Generate a dataset of 50,000 events:

input:
  - static:
      count: 50000

Tagged for use with multiple event templates:

input:
  - static:
      count: 1000
      tags: [batch]

On this page