PM for tracing at Google here. As the blog post mentioned, we're collaborating with partners on a common RPC context proposal for tracing systems [1]. Some of the major contributors are currently on vacation, but there'll be be another round of comments and updates once they get back. We're also working with the same partners on a project called Census - a set of tracing instrumentation libraries that all vendors can…
The future of latency profiling in Go
11–15 of 15 posts
Re: The future of latency profiling in Go
#12PM for tracing at Google here. As the blog post mentioned, we're collaborating with partners on a common RPC context proposal for tracing systems [1]. Some of the major contributors are currently on vacation, but there'll be be another round of comments and updates once they get back. We're also working with the same partners on a project called Census - a set of tracing instrumentation libraries that all vendors can…
Re: The future of latency profiling in Go
#13PM for tracing at Google here. As the blog post mentioned, we're collaborating with partners on a common RPC context proposal for tracing systems [1]. Some of the major contributors are currently on vacation, but there'll be be another round of comments and updates once they get back. We're also working with the same partners on a project called Census - a set of tracing instrumentation libraries that all vendors can…
What's the difference between this and opentracing? AFAIK opentracing is built by the people who created Dapper at Google, and the project also has a set of standards for HTTP transport.
Re: The future of latency profiling in Go
#14Re: The future of latency profiling in Go
#15Using Opentracing and uber's Jaeger client is awesome. It's easy to implement, and Jaeger provides multiple different mechanisms for sampling traces (always on, guaranteed throughput etc.). It's awesome to be able to see a UI giving you diagrams like this: https://www.dropbox.com/s/b2uhx77urpnuk9g/Screenshot%202017-... for your API. Definitely would recommend - it beats old-school log tracing.
Do I miss anything? OpenTracing mentions "A vendor-neutral open standard for distributed tracing." It reads like it's for implementors - is it useable stand alone + Jaeger as UI? How can it be used - can you point me to a tutorial/blog post?
It should be pretty clear how to use it once you read through the examples.
Jaeger requires using Cassandra as a datastore (for now), which isn't easily supported at my company, so I went with Zipkin and used MySQL as a datastore.