mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
21 lines
578 B
TOML
21 lines
578 B
TOML
[sinks.dev_hdx_aggregator]
|
|
type = "http"
|
|
uri = "http://aggregator:8001"
|
|
inputs = ["spans", "post_logs"]
|
|
compression = "gzip"
|
|
encoding.codec = "json"
|
|
batch.max_bytes = 10485760 # 10MB, required for rrweb payloads
|
|
batch.max_events = 100
|
|
batch.timeout_secs = 1
|
|
|
|
|
|
[sinks.dev_hdx_metrics_aggregator]
|
|
type = "http"
|
|
uri = "http://aggregator:8001?telemetry=metric"
|
|
inputs = ["metrics"]
|
|
compression = "gzip"
|
|
encoding.codec = "json"
|
|
batch.max_bytes = 100000
|
|
batch.max_events = 100
|
|
batch.timeout_secs = 1
|
|
# --------------------------------------------------------------------------------
|