Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

Excerpt

The eHealth infrastructure makes it possible to trace all actions across different services and components. This is implemented using Istio and OpenTracing with Jaeger. The Call Tracing applies to both Telemedicine Solutions (3rd party) and eHealth Services (Infrastructure Provider)

Table of Contents

The figure below show the trace flow from initial traffic to a Istio enabled pod, through the jaeger system all the way to the jaeger web interface and the FUT background service "SLA-metrics" (a part of the SLA calculating system).   

Gliffy
imageAttachmentIdatt617283585
baseUrlhttps://ehealth-dk.atlassian.net/wiki
macroId794e6344-445f-4328-8c14-e9fcfcb2f171
namejaeger-istio-setup
diagramAttachmentIdatt617218052
containerId128843780
timestamp1586350245869

Header Propagation

For all containers deployed on the infrastructure, an Istio-sidecar proxy is deployed in the same pod. The Istio proxy are able to automatically send spans (the time spend in a single service) to Jaeger.

...

The headers that must be propagated from the incoming request to all outgoing requests are the following:

  • x-request-id

  • x-b3-traceid

  • x-b3-spanid

  • x-b3-parentspanid

  • x-b3-sampled

  • x-b3-flags

  • x-ot-span-context

  • b3 (for forward compatibility)

All headers may not be present for all requests, but if they are, then they must be propagated.

...

This allows the infrastructure to:

  • Pinpoint potentially slow external dependencies

  • Calculate how much time is spend waiting for external dependencies for each end-user request

  • Create audit trails for all requests

More Info

Java client library and great explanation of the different B3 headers: https://github.com/openzipkin/b3-propagation

...

Various alternatives related to server and client instrumentation: https://github.com/opentracing-contrib
E.g. use https://github.com/opentracing-contrib/java-spring-web if using Spring Boot + servlets + Spring RestTemplate clients (other clients also available, e.g. Apache HttpClient: https://github.com/opentracing-contrib/java-apache-httpclient)


Example

Gliffy
imageAttachmentIdatt148144293
baseUrlhttps://ehealth-dk.atlassian.net/wiki
macroId8ddd1f39-ae73-48c7-b07e-b3dd81c1e074
nameIstio tracing
diagramAttachmentIdatt148078610
containerId128843780
timestamp1554720804082

...


...


Tracing on requests to external services

...

Jaeger traces should be sent to the Jaeger collector at: http://jaeger-operator-jaeger-collector.jaeger.svc.cluster.local:14268/api/traces