OpenTelemetry Collector deployment, instrumentation (Java/Python/Node.js/.NET/Go), and OTTL pipeline transforms for Coralogix — coralogix exporter config, Helm chart selection, Kubernetes topology, ECS/EKS/GKE deployments, SDK setup, APM transactions, and OTTL cardinality/PII/routing.
98
97%
Does it follow best practices?
Impact
99%
1.13xAverage score across 81 eval scenarios
Advisory
Suggest reviewing before use
This reference covers the coralogix, coralogix/resource_catalog, and loadbalancing exporters.
The coralogix exporter ships telemetry to Coralogix over OTLP. Regional routing is handled by a domain field.
exporters:
coralogix:
domain: "eu2.coralogix.com" # bare hostname for your region; NOT a URL
private_key: "${env:CORALOGIX_PRIVATE_KEY}"
application_name: "my-app"
subsystem_name: "my-service"
timeout: 30sdomain: to the regional data-ingestion hostname (e.g., eu2.coralogix.com). Never use endpoint:, https://, or a trailing slash. Never use a UI hostname.${env:CORALOGIX_PRIVATE_KEY}. The unbracketed $CORALOGIX_PRIVATE_KEY form silently fails to expand in newer versions (≥ v0.76).application_name_attributes and subsystem_name_attributes to dynamically route telemetry based on resource attributes, falling back to static strings:exporters:
coralogix:
domain: "eu2.coralogix.com"
private_key: "${env:CORALOGIX_PRIVATE_KEY}"
application_name_attributes: ["service.namespace", "application"]
subsystem_name_attributes: ["service.name", "k8s.deployment.name"]
application_name: "default-app" # fallback when no derived value
subsystem_name: "default-subsystem"Do not set protocol: http. Since collector-contrib v0.144, the coralogix exporter validates
HTTP compatibility for all signals at startup — including profiles, which require gRPC. The
validation runs before pipeline wiring, so protocol: http fails even with no profiles pipeline:
Error: exporters::coralogix: profiles signal is not supported with HTTP protocol,
use gRPC protocol (default) insteadRemove the protocol: field. gRPC is the default and works for all signals.
The exporter's sending_queue and retry_on_failure blocks provide resilience and back-pressure.
exporters:
coralogix:
domain: "eu2.coralogix.com"
private_key: "${env:CORALOGIX_PRIVATE_KEY}"
sending_queue:
enabled: true
num_consumers: 10
queue_size: 5000
storage: file_storage # optional: persist to disk for crash-safe buffering
retry_on_failure:
enabled: true
initial_interval: 5s
max_interval: 30s
max_elapsed_time: 300s
timeout: 30sEntity metadata requires a dedicated exporter and specific HTTP headers.
exporters:
coralogix/resource_catalog:
domain: "eu2.coralogix.com"
private_key: "${env:CORALOGIX_PRIVATE_KEY}"
application_name: "resource"
subsystem_name: "catalog"
logs:
headers:
x-coralogix-ingress: "metadata-as-otlp-logs/v1"
timeout: 120sx-coralogix-ingress: metadata-as-otlp-logs/v1, entity events reach the logs pipeline but never populate Infrastructure Explorer.Used on the agent daemonset to route spans to a central gateway deployment based on trace_id. This is required for tail_sampling on the gateway to evaluate complete traces.
exporters:
loadbalancing:
protocol:
otlp:
tls:
insecure: true
resolver:
dns:
hostname: otel-gateway.coralogix.svc.cluster.local
port: 4317
routing_key: traceIDrouting_key: traceID enforces consistent hashing on the trace ID. Without it, spans distribute round-robin, and the gateway's tail sampler sees incomplete traces, producing sampling_trace_dropped_too_early metrics.evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10
scenario-11
scenario-12
scenario-13
scenario-14
scenario-15
scenario-16
scenario-17
scenario-18
scenario-19
scenario-20
scenario-21
scenario-22
scenario-23
scenario-24
scenario-25
scenario-26
scenario-27
scenario-28
scenario-29
scenario-30
scenario-31
scenario-32
scenario-33
scenario-34
scenario-35
scenario-36
scenario-37
scenario-38
scenario-39
scenario-40
scenario-41
scenario-42
scenario-43
scenario-44
scenario-45
scenario-46
scenario-47
scenario-48
scenario-49
scenario-50
scenario-51
scenario-52
scenario-53
scenario-54
scenario-55
scenario-56
scenario-57
scenario-58
scenario-59
scenario-60
scenario-61
scenario-62
scenario-63
scenario-64
scenario-65
scenario-66
scenario-67
scenario-68
scenario-69
scenario-70
scenario-71
scenario-72
scenario-73
scenario-74
scenario-75
scenario-76
scenario-77
scenario-78
scenario-79
scenario-80
scenario-81
skills
opentelemetry
opentelemetry-collector
references
opentelemetry-instrumentation
opentelemetry-ottl