-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Zipkin V2 Trace Receiver doesn't parse tags like http.status_code #975
Labels
bug
Something isn't working
good first issue
Good for newcomers
help wanted
Good issue for contributors to OpenTelemetry Service to pick up
Comments
flands
added
bug
Something isn't working
good first issue
Good for newcomers
help wanted
Good issue for contributors to OpenTelemetry Service to pick up
labels
May 15, 2020
chris-smith-zocdoc
added a commit
to Zocdoc/opentelemetry-collector
that referenced
this issue
May 15, 2020
I'd be happy to pick this up, if that's okay? |
I'm actually planning on working on this today @Verlet64 as its a requirement for my work |
This fix needs to be coordinated with any fixes for #1138 |
tigrannajaryan
pushed a commit
that referenced
this issue
Jun 23, 2020
Fixes #975 Please look at the individual commits, most of this is just moving code around. Moves zipkin v2 trace conversion code into translator/trace/zipkin, previously it was in the receiver Use the same tag parsing logic for both zipkin v1 and v2
wyTrivail
pushed a commit
to mxiamxia/opentelemetry-collector
that referenced
this issue
Jul 13, 2020
) Fixes open-telemetry#975 Please look at the individual commits, most of this is just moving code around. Moves zipkin v2 trace conversion code into translator/trace/zipkin, previously it was in the receiver Use the same tag parsing logic for both zipkin v1 and v2
Troels51
pushed a commit
to Troels51/opentelemetry-collector
that referenced
this issue
Jul 5, 2024
…pen-telemetry#975) * Enable CMake to search the new package variable <PackageName>_ROOT * CMake format
swiatekm
pushed a commit
to swiatekm/opentelemetry-collector
that referenced
this issue
Oct 9, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
bug
Something isn't working
good first issue
Good for newcomers
help wanted
Good issue for contributors to OpenTelemetry Service to pick up
Zipkin tags/annotations is always a string and they must be parsed to successfully convert to the open census format.
Current the v1 and v2 zipkin tag/binary annotation parsers are separate code paths
V1 supports
opentelemetry-collector/translator/trace/zipkin/zipkinv1_to_protospan.go
Lines 216 to 219 in 86e5805
opentelemetry-collector/translator/trace/zipkin/status_code.go
Lines 69 to 98 in 86e5805
V2 only supports
opentelemetry-collector/receiver/zipkinreceiver/trace_receiver.go
Lines 594 to 611 in 86e5805
opentelemetry-collector/receiver/zipkinreceiver/trace_receiver.go
Lines 488 to 529 in d86bcd0
I think these code paths should be unified so they have the same behavior.
The text was updated successfully, but these errors were encountered: