Document updated on Sep 15, 2019
Since | v0.5 |
---|---|
Namespace | telemetry/opencensus |
Log prefix | [SERVICE: Opencensus] |
Scope | service |
Source | krakend/krakend-opencensus |
Zipkin is a distributed tracing system. It helps gather timing data needed to troubleshoot latency problems in service architectures.
The Opencensus exporter allows you export data to Zipkin. Enabling it only requires you to add the zipkin
exporter in the opencensus module.
The following configuration snippet sends data to your Zipkin:
{
"extra_config": {
"telemetry/opencensus": {
"exporters": {
"zipkin": {
"collector_url": "http://192.168.99.100:9411/api/v2/spans",
"service_name": "krakend"
}
}
}
}
}
collector_url
is the URL (including port and path) where your Zipkin is accepting the spansservice_name
the service name registered in ZipkinSee also the additional settings of the Opencensus module that can be declared.
The documentation is only a piece of the help you can get! Whether you are looking for Open Source or Enterprise support, see more support channels that can help you.