You are viewing a previous version of KrakenD Community Edition (v1.4), go to the
latest version
Document updated on Sep 15, 2019
Exporting traces to Jaeger
Jaeger is an open source, end-to-end distributed tracing system that allows you to monitor and troubleshoot transactions in complex distributed systems.
The Opencensus exporter allows you export data to Jaeger. Enabling it only requires you to add the jaeger
exporter in the opencensus module.
The following configuration snippet sends data to your Jaeger:
"github_com/devopsfaith/krakend-opencensus": {
"exporters": {
"jaeger": {
"endpoint": "http://192.168.99.100:14268/api/traces",
"service_name":"krakend"
},
}
}
endpoint
is the URL (including port) where your Jaeger isservice_name
the service name registered in Jaeger
See also the additional settings of the Opencensus module that can be declared.