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
The http input in the CRD has a keepaliveTimeout property which the operator makes keepLive_timeout in the fluent config secret.
However it should be keepalive_timeout as per the docs here: https://docs.fluentd.org/input/http
To Reproduce
Create a fluentd.fluent.io/v1alpha1 Fluentd with one http globalInputs and specify the keepaliveTimeout property.
Expected behavior
Should translate to keepalive_timeout in the compiled fluentd config
Your Environment
- Fluent Operator version: v2.4.0
- Container Runtime: doesn't matter in this case
- Operating system: doesn't matter in this case
- Kernel version: doesn't matter in this case
How did you install fluent operator?
helm chart from https://fluent.github.io/helm-charts - shouldn't matter though
Additional context
output in the logs:
2023-10-27 09:28:29 +0000 [warn]: fluent/log.rb:383:warn: parameter 'keepLive_timeout' in <source>
@type http
bind "0.0.0.0"
body_size_limit 32MB
keepLive_timeout 10s
port 15001
</source> is not used.
The text was updated successfully, but these errors were encountered:
Describe the issue
The http input in the CRD has a
keepaliveTimeout
property which the operator makeskeepLive_timeout
in the fluent config secret.However it should be
keepalive_timeout
as per the docs here: https://docs.fluentd.org/input/httpTo Reproduce
Create a fluentd.fluent.io/v1alpha1 Fluentd with one http globalInputs and specify the
keepaliveTimeout
property.Expected behavior
Should translate to
keepalive_timeout
in the compiled fluentd configYour Environment
How did you install fluent operator?
helm chart from
https://fluent.github.io/helm-charts
- shouldn't matter thoughAdditional context
output in the logs:
The text was updated successfully, but these errors were encountered: