We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
OpenTelemetry span status needs to be mapped correctly to GCT's span status (google.rpc.Code). Currently we just copy the int value over:
google.rpc.Code
opentelemetry-operations-python/opentelemetry-exporter-google-cloud/src/opentelemetry/exporter/cloud_trace/__init__.py
Line 225 in 9194ba9
But OTel has OK = 1 but google.rpc.Code has OK = 0
OK = 1
OK = 0
The text was updated successfully, but these errors were encountered:
aabmass
Successfully merging a pull request may close this issue.
OpenTelemetry span status needs to be mapped correctly to GCT's span status (
google.rpc.Code
). Currently we just copy the int value over:opentelemetry-operations-python/opentelemetry-exporter-google-cloud/src/opentelemetry/exporter/cloud_trace/__init__.py
Line 225 in 9194ba9
But OTel has
OK = 1
but google.rpc.Code hasOK = 0
The text was updated successfully, but these errors were encountered: