I also want to trace network latency from App -> Service1 -> App -> Service2.
Spring sleuth works perferct to find latency between Sleuth aware services say services1->service2 as I can see CS,SR tags in Zipkin. Now I also want to track network Latency between devices and other area which we are hopping but those are not Sleuth aware services. How can I do that. Any pointers would be appreciated .
From the Docs,
That means that the current span has Trace-Id set to X, Span-Id set to D. It also has emitted Client Sent event.
Are there any specific headers which needs to be sent from App to Server?
I know Sleuth does it out of the box using Rest template. How can I do the same thing from Apps or other non sleuth services.