You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I need help from this group.
I'm using plugins to perform an extraction in the Oracle database, this extraction should be sent to Elasticsearch.
Logstash is running locally, via docker.
Elasticsearch is on Azure via ECK.
I access all ECK features through Ingress, both Elastic and Kibana.
But in Logstash is giving the error below... Log with ERROR: logstash | [2021-12-22T18:12:11,238][WARN ][logstash.outputs.elasticsearch][main] Attempted to resurrect connection to dead ES instance, but got an error. {:url=>"https://elastic:xxxxxx@URL:80/", :error_type=>LogStash::Outputs::ElasticSearch::HttpClient::Pool::HostUnreachableError, :error=>"Elasticsearch Unreachable: [https://elastic:xxxxxx@URL:80/][Manticore::ClientProtocolException] SSL peer shut down incorrectly"}
Anyone have any tips?
My topology:
My pipeline output:
output {
if "logstash-tempo-parado-total" in [tags] {
elasticsearch {
hosts => ["URL:80"]
ssl => true
ssl_certificate_verification => false
user => "elastic"
password => "????????"
cacert => '/usr/share/logstash/etc/tls.crt'
index => "logstash-tempo-parado-total-%{+YYYY.MM}"
}
}
}
SSL peer shut down incorrectly usually means the plugin can not talk to ES (via HTTP), due a TLS issue.
This is something you'll need to review, there isn't much we can do about the issue and isn't a bug in the output itself.
Logstash is running locally, via docker.
Elasticsearch is on Azure via ECK.
Hi, I need help from this group.
I'm using plugins to perform an extraction in the Oracle database, this extraction should be sent to Elasticsearch.
Logstash is running locally, via docker.
Elasticsearch is on Azure via ECK.
I access all ECK features through Ingress, both Elastic and Kibana.
But in Logstash is giving the error below...
Log with ERROR:
logstash | [2021-12-22T18:12:11,238][WARN ][logstash.outputs.elasticsearch][main] Attempted to resurrect connection to dead ES instance, but got an error. {:url=>"https://elastic:xxxxxx@URL:80/", :error_type=>LogStash::Outputs::ElasticSearch::HttpClient::Pool::HostUnreachableError, :error=>"Elasticsearch Unreachable: [https://elastic:xxxxxx@URL:80/][Manticore::ClientProtocolException] SSL peer shut down incorrectly"}
Anyone have any tips?
My topology:
My pipeline output:
My Ingress config:
Accessing using brower:
The text was updated successfully, but these errors were encountered: