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
[warn]: #0 got unrecoverable error in primary and no secondary error_class=ArgumentError error="unknown SSL method `TLSv1_3'"
Looking at the http output documentation it looks like the max version is TLS 1.2. I have verified that it works removing the tls_version parameter and downgrading the ssl configuration of the endpoint to support TLS 1.2.
If I remove the tls_version parameter without downgrading the endpoint, the error is:
Hmm, current out_http implementation doesn't seem able to set TLSv1.3 because it doesn't use Fluent::TLS:#set_version_to_context, it passes the version string directly to Net::HTTP#start:
Discussed in #4329
Originally posted by mikakatua October 22, 2023
I'm trying to use fluentd to send logs to a http endpoint. This endpoint only supports TLS 1.3
My configuration is as follows:
This does not work. I get the error:
Looking at the http output documentation it looks like the max version is TLS 1.2. I have verified that it works removing the
tls_version
parameter and downgrading the ssl configuration of the endpoint to support TLS 1.2.If I remove the
tls_version
parameter without downgrading the endpoint, the error is:Is there any way to get it working with TLS 1.3?
I'm using Fluentd v1.16.2-1.0 docker image
The text was updated successfully, but these errors were encountered: