Generate Input Plugin

Hi all,

I haven't found any documentation on this. Are there any parameters you can add to the generate input plugin so that it sends X amount of logs / second or minute.

I am going to assume the default (as below), sends the X amount of logs as quick as it can? The idea is, I want to load test our pipeline which includes: collector, normaliser, AWS env, etc.

input {
  generator {
    lines => [
      "line 1",
      "line 2",
      "line 3"
    ]
    # Emit all lines 3 times.
    count => 3
  }
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.