You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once service is instrumented it will produce more tracing data from inside the service. For example if there is an error it will be possible to see the error message or redirects within the execution in the service.
Add business data to a span. In the controller it will be possible to inject a tracer and add for instance customer ID into the span which can be used as a query in Jaeger UI data.tracer.activeSpan().setTag("customer-id", customerId).
Hi,
I went through the code and I would like to propose a couple of improvements in the tracing:
JAEGER_PROPAGATION=b3
. This step can showcase how instrumentation helps to propagate the context.tracer.activeSpan().setTag("customer-id", customerId)
.Tracing Istio tutorial: https://redhat-developer-demos.github.io/istio-tutorial/istio-tutorial/1.1.x/3monitoring-tracing.html#tracing
The text was updated successfully, but these errors were encountered: