Vendor-agnostic way to receive, process and export telemetry data.
Zeabur
Zeabur
ZeaburThe OpenTelemetry Collector receives traces, metrics, and logs, processes the telemetry, and exports it to a wide variety of observability backends using its components. For a conceptual overview of the Collector, see Collector.
We have initialize a basic /etc/otelcol/config.yaml that has the following defaults:
http://your-domain/health, where your-domain binds to port 13133.You should deploy VictoriaTraces and VictoriaLogs in the same project as this service. Configure your service to send traces and logs to this collector.
To customize the configuration, edit the /etc/otelcol/config.yaml file in the Config Editor. If you need further customization, refer to the Collector Configuration documentation. You can add more receivers like Jaeger, exporters like Prometheus, or processors like filter.
Add the following target to your /etc/victoriametrics/scrape.yaml file of your VictoriaMetrics instance:
scrape_configs:
- job_name: 'otel-collector'
static_configs:
- targets: ['http://otel-collector:8888/metrics']
Zeabur