-
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
Adjust Span status translations to match the specification #1841
Closed
tigrannajaryan opened this issue
Sep 23, 2020
· 0 comments
· Fixed by open-telemetry/opentelemetry-collector-contrib#1489
Closed
Adjust Span status translations to match the specification #1841
tigrannajaryan opened this issue
Sep 23, 2020
· 0 comments
· Fixed by open-telemetry/opentelemetry-collector-contrib#1489
Comments
tigrannajaryan
pushed a commit
to tigrannajaryan/opentelemetry-collector
that referenced
this issue
Oct 29, 2020
Contributes to open-telemetry#1841 TODO: need to use deprecated_code as specified in the OTLP spec.
tigrannajaryan
pushed a commit
to tigrannajaryan/opentelemetry-collector
that referenced
this issue
Oct 30, 2020
Contributes to open-telemetry#1841 TODO: need to use deprecated_code as specified in the OTLP spec.
tigrannajaryan
pushed a commit
to tigrannajaryan/opentelemetry-collector
that referenced
this issue
Oct 30, 2020
Contributes to open-telemetry#1841 TODO: need to use deprecated_code as specified in the OTLP spec.
tigrannajaryan
pushed a commit
to tigrannajaryan/opentelemetry-collector
that referenced
this issue
Nov 3, 2020
Contributes to open-telemetry#1841 TODO: need to use deprecated_code as specified in the OTLP spec. Add sender-side handling of deprecated Span status code Add receiver-side handling of deprecated Span status code
tigrannajaryan
pushed a commit
to tigrannajaryan/opentelemetry-collector
that referenced
this issue
Nov 3, 2020
Contributes to open-telemetry#1841 TODO: need to use deprecated_code as specified in the OTLP spec. Add sender-side handling of deprecated Span status code Add receiver-side handling of deprecated Span status code
tigrannajaryan
pushed a commit
to tigrannajaryan/opentelemetry-collector
that referenced
this issue
Nov 3, 2020
Contributes to open-telemetry#1841 - Added tests that verify receiving and sending behavior for Status code.
tigrannajaryan
pushed a commit
to tigrannajaryan/opentelemetry-collector
that referenced
this issue
Nov 3, 2020
Contributes to open-telemetry#1841 - Added tests that verify receiving and sending behavior for Status code.
tigrannajaryan
pushed a commit
to tigrannajaryan/opentelemetry-collector
that referenced
this issue
Nov 3, 2020
Contributes to open-telemetry#1841 - Implemente the backward compatibility logic for sending and receiving side for DeprecatedCode and Code fields according to OTLP spec. - Had to modify pdata generator to allow generating fields without setters. This is needed because the Status code field needs a custom setter logic that implements the DeprecatedCode vs Code handling. - Added tests that verify OTLP receiver behavior for Status Code/DeprecatedCode. - Added tests that verify sending/setting behavior for Status Code/DeprecatedCode for any component that uses pdata.Traces Status.SetCode(). - Modified all non-OTLP trace receivers and exporters (Jaeger, Zipkin, OpenCensus) to use the new Status code. - Modified correctness tests to use the new status Code instead of DeprecatedCode.
tigrannajaryan
pushed a commit
to tigrannajaryan/opentelemetry-collector
that referenced
this issue
Nov 3, 2020
Contributes to open-telemetry#1841 - Implemente the backward compatibility logic for sending and receiving side for DeprecatedCode and Code fields according to OTLP spec. - Had to modify pdata generator to allow generating fields without setters. This is needed because the Status code field needs a custom setter logic that implements the DeprecatedCode vs Code handling. - Added tests that verify OTLP receiver behavior for Status Code/DeprecatedCode. - Added tests that verify sending/setting behavior for Status Code/DeprecatedCode for any component that uses pdata.Traces Status.SetCode(). - Modified all non-OTLP trace receivers and exporters (Jaeger, Zipkin, OpenCensus) to use the new Status code. - Modified correctness tests to use the new status Code instead of DeprecatedCode.
tigrannajaryan
pushed a commit
to tigrannajaryan/opentelemetry-collector
that referenced
this issue
Nov 3, 2020
Contributes to open-telemetry#1841 - Implemente the backward compatibility logic for sending and receiving side for DeprecatedCode and Code fields according to OTLP spec. - Had to modify pdata generator to allow generating fields without setters. This is needed because the Status code field needs a custom setter logic that implements the DeprecatedCode vs Code handling. - Added tests that verify OTLP receiver behavior for Status Code/DeprecatedCode. - Added tests that verify sending/setting behavior for Status Code/DeprecatedCode for any component that uses pdata.Traces Status.SetCode(). - Modified all non-OTLP trace receivers and exporters (Jaeger, Zipkin, OpenCensus) to use the new Status code. - Modified correctness tests to use the new status Code instead of DeprecatedCode.
tigrannajaryan
pushed a commit
to tigrannajaryan/opentelemetry-collector
that referenced
this issue
Nov 3, 2020
Contributes to open-telemetry#1841 - Implemented the backward compatibility logic for sending and receiving side for DeprecatedCode and Code fields according to OTLP spec. - Had to modify pdata generator to allow generating fields without setters. This is needed because the Status code field needs a custom setter logic that implements the DeprecatedCode vs Code handling. - Added tests that verify OTLP receiver behavior for Status Code/DeprecatedCode. - Added tests that verify sending/setting behavior for Status Code/DeprecatedCode for any component that uses pdata.Traces Status.SetCode(). - Modified all non-OTLP trace receivers and exporters (Jaeger, Zipkin, OpenCensus) to use the new Status code. - Modified correctness tests to use the new status Code instead of DeprecatedCode.
tigrannajaryan
pushed a commit
to tigrannajaryan/opentelemetry-collector
that referenced
this issue
Nov 3, 2020
Contributes to open-telemetry#1841 - Implemented the backward compatibility logic for sending and receiving side for DeprecatedCode and Code fields according to OTLP spec. - Had to modify pdata generator to allow generating fields without setters. This is needed because the Status code field needs a custom setter logic that implements the DeprecatedCode vs Code handling. - Added tests that verify OTLP receiver behavior for Status Code/DeprecatedCode. - Added tests that verify sending/setting behavior for Status Code/DeprecatedCode for any component that uses pdata.Traces Status.SetCode(). - Modified all non-OTLP trace receivers and exporters (Jaeger, Zipkin, OpenCensus) to use the new Status code. - Modified correctness tests to use the new status Code instead of DeprecatedCode.
tigrannajaryan
pushed a commit
to tigrannajaryan/opentelemetry-collector
that referenced
this issue
Nov 3, 2020
Contributes to open-telemetry#1841 - Implemented the backward compatibility logic for sending and receiving side for DeprecatedCode and Code fields according to OTLP spec. - Had to modify pdata generator to allow generating fields without setters. This is needed because the Status code field needs a custom setter logic that implements the DeprecatedCode vs Code handling. - Added tests that verify OTLP receiver behavior for Status Code/DeprecatedCode. - Added tests that verify sending/setting behavior for Status Code/DeprecatedCode for any component that uses pdata.Traces Status.SetCode(). - Modified all non-OTLP trace receivers and exporters (Jaeger, Zipkin, OpenCensus) to use the new Status code. - Modified correctness tests to use the new status Code instead of DeprecatedCode.
tigrannajaryan
added a commit
that referenced
this issue
Nov 3, 2020
Contributes to #1841 - Implemented the backward compatibility logic for sending and receiving side for DeprecatedCode and Code fields according to OTLP spec. - Had to modify pdata generator to allow generating fields without setters. This is needed because the Status code field needs a custom setter logic that implements the DeprecatedCode vs Code handling. - Added tests that verify OTLP receiver behavior for Status Code/DeprecatedCode. - Added tests that verify sending/setting behavior for Status Code/DeprecatedCode for any component that uses pdata.Traces Status.SetCode(). - Modified all non-OTLP trace receivers and exporters (Jaeger, Zipkin, OpenCensus) to use the new Status code. - Modified correctness tests to use the new status Code instead of DeprecatedCode.
tigrannajaryan
pushed a commit
to tigrannajaryan/opentelemetry-collector-contrib
that referenced
this issue
Nov 4, 2020
Resolves: open-telemetry/opentelemetry-collector#1841 This uses the new Span Status Code/DeprecatedCode from core repo. Changes to Span Status are described in more details in this core PR: open-telemetry/opentelemetry-collector#2031
tigrannajaryan
added a commit
to open-telemetry/opentelemetry-collector-contrib
that referenced
this issue
Nov 5, 2020
Resolves: open-telemetry/opentelemetry-collector#1841 This uses the new Span Status Code/DeprecatedCode from core repo. Changes to Span Status are described in more details in this core PR: open-telemetry/opentelemetry-collector#2031
MovieStoreGuy
pushed a commit
to atlassian-forks/opentelemetry-collector
that referenced
this issue
Nov 11, 2021
* Refine configuration design docs * Remove repetition * Fix typo * Unify code blocks Co-authored-by: Tyler Yahn <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Once this is merged open-telemetry/opentelemetry-specification#966 we need to adjust translation accordingly.
The text was updated successfully, but these errors were encountered: