Skip to content
#

openzipkin

Here are 40 public repositories matching this topic...

narayaruna
narayaruna commented Mar 3, 2020

https://github.com/openzipkin/zipkin/blob/master/zipkin/src/main/java/zipkin2/Span.java#L759

tags = builder.tags == null ? Collections.emptyMap() : new LinkedHashMap<>(builder.tags);

The empty map is immutable and makes it difficult to add a tag to a already created span. This will be helpful with performance. Otherwise, have to turn it in to builder and back to a Span when this type is us

adriancole
adriancole commented Apr 17, 2018

Hinting from the below comment and an encoding bug I think flags needs to be revisited:

        public const string Sampled = "X-B3-Sampled"; // Will be replaced by Flags in the future releases of Finagle

The X-B3-Flags header back maybe 2012 or so was thinking about becoming more, but never did. Reasons including awkward overlap with sampled, and also it is mainly covering binar

adriancole
adriancole commented Apr 30, 2019

In the last release vote, it seemed evident the README could be clarified in a couple ways.

  • beyond examples, further clarify that proto and swagger in this project are inputs to other tools
    • ex. point to the main docs of the IDL compiler
    • note that most users will not use these directly as tracing libraries will
  • address a frequently asked question which is "why is there a maven bui

Improve this page

Add a description, image, and links to the openzipkin topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the openzipkin topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.