Hi,
There was suggested in this thread that my grok might cause issues with the performance of my filebeat/logstash/elasticseach setup.
This is my config file
// more if [source] checks are here
// ....
} else if [source] == "/var/log/upstart/webservices.log" {
grok {
match => {
"message" => ".*Average per file: %{NUMBER:webservice_per_file_ms1:int} ms"
}
}
mutate {
remove_tag => [
"beats_input_codec_plain_applied"
]
remove_field => [
"offset",
"count",
"audit_type",
"message",
"input_type",
"beat"
]
}
}
Does anything seem un-optimized ?