Fluentd
To send Fluentd events to HyperDX, you'll need to add to the bottom of the
Fluentd configuration file (typically named fluentd.conf
) the following
configuration:
This Guide Integrates:
✅ Logs | ✖️ Metrics | ✖️ Traces |
To send over metrics or APM/traces, you'll need to add the corresponding language integration to your application as well.
# Place this configuration at the bottom of the file.
<filter **>
@type record_transformer
<record>
__HDX_API_KEY <YOUR_HYPERDX_API_KEY_HERE>
service.name <NAME_OF_YOUR_APP_OR_SERVICE>
</record>
</filter>
<match **>
@type forward
transport tls
send_timeout 60s
recover_wait 10s
hard_timeout 60s
<server>
name hyperdx
host in-otel.hyperdx.io
port 24225
</server>
</match>