deprecation
Promscale has been discontinued. We strongly recommend that you do not use Promscale in a production environment. Learn more.
Promscale natively supports the OpenTelemetry Protocol (OTLP) for traces. To ingest Zipkin traces to Promscale, use the OpenTelemetry Collector. The OpenTelemetry Collector converts the Zipkin traces to OpenTelemetry traces.
You can configure the OpenTelemetry Collector to forward Zipkin traces to Promscale using Zipkin receiver and the OpenTelemetry exporter.
Here's an example configuration file for the OpenTelemetry Collector to forward traces to Promscale after batch processing the data:
receivers:zipkin:exporters:otlp:endpoint: "<PROMSCALE_HOST>:<gRPC_PORT>"tls:insecure: truesending_queue:queue_size: 1000000timeout: 10sprocessors:batch:send_batch_size: 4000send_batch_max_size: 4000timeout: 10sservice:pipelines:traces:receivers: [zipkin]exporters: [otlp]processors: [batch]
Where:
<PROMSCALE_HOST>
: hostname of Promscale.<gRPC_PORT>
: gRPC port of Promscale. The default port is 9202.
If you are running the OTLP Collector and the
Promscale Connector on a
Kubernetes cluster, the endpoint parameter is
similar to endpoint:
"promscale-connector.default.svc.cluster.local:<PORT>"
The default port exposed by the OpenTelemetry
Collector Zipkin receiver is 9411
.
This is the port where you should send your Zipkin
traces.
For more information about OpenTelemetry Collector, see the OpenTelemetry documentation.