opentracing-tutorial
opentracing-tutorial copied to clipboard
A collection of tutorials for the OpenTracing API
After working through the lesson and then adapting the solution's code over my own, it seems that multiple spans are not produced from the code in lesson 2. I don't...
Would be great if you could add a line to import `ImmutableMap` ``` import com.google.common.collect.ImmutableMap; ``` to help newbies!
Here's a missing import that would help newbies! (Should be added at the `#add-some-imports` section for `lesson03` for the `Formatter` and `Publisher` classes) ``` import javax.ws.rs.core.Context; ``` And some imports...
Hello. Thank you for your opentracing-tutorials. I tried to exercise codes of java, and found some misprints in documents. They are simple problems, so I fixed them. Also, I added...
It says `lesson01/exercise/Hello.java`, but should be `exercise/Hello.java` (relative to the "current lesson"), so that the file is created at `src/main/java/lesson01/exercise/Hello.java`, relative to the tutorial root
New to opentracing, Try to explore opentracing and jaeger UI. After gone through the lessons, With help of lesson01 solution [https://github.com/yurishkuro/opentracing-tutorial/tree/master/python/lesson01/solution](url) tried to include some logic with sleep to add...
https://github.com/yurishkuro/opentracing-tutorial/blob/master/python/lesson03/solution/formatter.py#L12 fails if tracer is FlaskTracer with `'FlaskTracer' object has no attribute '_noop_span_context'`. Could we add some distinction between the two tracer objects?
The nodejs tutorial should more closely match the python tutorial, which is excellent. See [WIP](https://github.com/yurishkuro/opentracing-tutorial/pull/6).