Hello,
I am trying to deploy a Logstash service on OCP using an Elastic-provided image: elastic/logstash:8.16.3
The service needs to receive input data from elastic-agents and forward it accordingly.
My input pipeline:
input {
elastic-agent {
port => 5044
host "0.0.0.0"
ssl_enabled => true
ssl_certificate_authorities => "path"
ssl_certificate => "path"
ssl_key => "path"
ssl_client_authentication => "required"
}
}
On the agent side, I consistently receive the following errors:
Connection to backoff(async(tcp://****:5044)) established
6 events out of 6 events sent to logstash host ****:5044. Continue sending
close connection
Failed to publish events: client is not connected
What do you recommend doing?