Skip to content

Instantly share code, notes, and snippets.

@colinsurprenant
colinsurprenant / logstash_filtersr _performance.md
Last active April 22, 2021 01:27
measuring logstash filters performance

Measuring logstash filters performance

  • given a data file sample named data.log
  • modify your config to use the stdin input so that you can pipe you sample log file to logstash
input {
  stdin {
    codec => line
  }
}