mirror of
https://github.com/elastic/logstash.git
synced 2025-04-22 05:37:21 -04:00
19 lines
182 B
Text
19 lines
182 B
Text
input {
|
|
generator {
|
|
type => gen
|
|
}
|
|
}
|
|
|
|
filter {
|
|
metrics {
|
|
meter => "events"
|
|
add_tag => "metric"
|
|
}
|
|
}
|
|
|
|
output {
|
|
stdout {
|
|
tags => metric
|
|
debug => true
|
|
}
|
|
}
|