docs/en/setup/backend/otlp-trace.md
SkyWalking can receive traces in OTLP format and convert them to Zipkin Trace format eventually. For data analysis and queries related to Zipkin Trace, please refer to the relevant documentation.
OTLP Trace handler references the Zipkin Exporter in the OpenTelemetry Collector to convert the data format.
Both OTLP/gRPC and OTLP/HTTP are supported for traces, logs, and metrics:
| Signal | OTLP/gRPC (port 11800) | OTLP/HTTP (port 12800) |
|---|---|---|
| Traces | gRPC TraceService/Export | POST /v1/traces |
| Logs | gRPC LogsService/Export | POST /v1/logs |
| Metrics | gRPC MetricsService/Export | POST /v1/metrics |
OTLP/HTTP supports both application/x-protobuf and application/json content types.
application.yml.receiver-otel:
selector: default
default:
enabledHandlers: otlp-traces
application.yml for config the zipkin.Please read deploy Lens UI documentation for query OTLP traces.