Replies: 2 comments 1 reply
-
cc @dmitryax |
Beta Was this translation helpful? Give feedback.
0 replies
-
Looks like |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'm trying to use FluentD with the Fluent Forward Receiver, but all examples I found was using FluentBit, Here are my fluentd.conf files:
<source>
@type http
port 9880
bind 0.0.0.0
</source>
<match **>
@type forward
send_timeout 60s
recover_wait 10s
hard_timeout 60s
<server>
name OTELCollector
host 0.0.0.0
port 8006
weight 60
</server>
</match>
Here my otelcoll.yaml:
receivers:
fluentforward:
endpoint: 0.0.0.0:8006
processors:
batch:
exporters:
logging:
loglevel: debug
service:
pipelines:
logs:
receivers: [fluentforward]
processors: [batch]
exporters: [logging]
I tried a simple curl command:
curl -X POST -d 'json={"foo":"bar"}' http://localhost:9880/app.log
but can't see the output in the OTEL Collector console.
Any idea, if this is a supported use case?
Regards,
Huy
Beta Was this translation helpful? Give feedback.
All reactions