hyperdx/docker/ingestor/http-server.sinks.toml
2023-09-12 20:08:05 -07:00

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
# --------------------------------------------------------------------------------