Logstash support

Is there a possible way to use Logstash with opendistro ES and Kibana?

Yes, one can use standard Logstash configuration.

1 Like

hi @abhilash2908
try this output configuration, which will work with the security plugin:

output {
  elasticsearch {
    hosts => ["localhost:9200"]
    index => "logstash-index-test"
    user => "admin"
    password => "admin"
    ssl => true
    cacert => "/full/path/to/root-ca.pem"
    ilm_enabled => false
  }
}
1 Like

Got it. Thanks everyone!

1 Like