Logstash input beats plugin id parameter not work

my config
input {
beats {
id => "my_plugin_id"
port => 5044
}
}

but i can't get the id info when i use kibana

The value from the common id parameter is the same across all input plugins, but it is not designed to add metadata to the event, which explains why you're not seeing it on the events in Kibana.

Instead, the id allows Logstash to differentiate between multiple instances of a plugin, which is helpful when using monitoring tools and the monitoring API to debug and tune Logstash performance.

Thanks :slightly_smiling_face::+1:

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