Data dog+Kibana plugin

Hi, I want to use this:
Datadog output plugin | Logstash Reference [8.4] | Elastic](Datadog output plugin | Logstash Reference [8.4] | Elastic
Is there anyway to make the integration based on specific filter of kibana such as container name.
That means for container name A alerts will be seen in datadog,otherwise we wont get any alerts via datadog

Logstash has no relation with Kibana, it ships data into Elasticsearch and you use Kibana to see this data, but you can filter things in your logstash configuration.

You just need to know which filter has the information you need and create a conditional.

For example:

if [fieldname] != "value" {
    drop {}
}

This will drop all the events where the content of fieldname is not equal to value.

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