Ildar Minaev
Ildar Minaev
Try something like this: `mysql_global_status_wsrep_cluster_info unless ignoring(__dst__) (label_replace(mysql_global_status_wsrep_cluster_info, "__dst__", "$1", "cluster-uuid", "(.*)") == label_replace(mysql_global_status_wsrep_cluster_info, "__dst__", "$1", "local-uuid", "(.*)"))`
As workaround I changed metrics.rb code and it works fine for me: https://github.com/IldarMinaev/files/blob/master/logstash/lib/logstash/filters/metrics.rb This code require 'type' field from input events.
Metrics plugin generate new Logstash events. Old ones with all fields will be unavailable after metrics filter. You can use 'add_field' to add new fields to metrics events. Note: currently...
Hi @fstab , any updates regarding multiline support? It will be nice to have something like filebeat/logstash have: * multiline.pattern (regexp) * multiline.negate (true/false) * multiline.match (before/after)