-
Notifications
You must be signed in to change notification settings - Fork 272
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
Setting status on span does nothing #3515
Comments
@Meemaw Is this really an issue in the opentelemetry crate? |
Not sure, might be due to custom visitor?
|
I looked into this earlier today and I think this is not supported because we are using the If you read the
HOWEVER: This won't work right now for three reasons:
We could fix the second issue by adding a check to see if this has been set manually before we set it, but I don't think that's a good choice since I think our automated handling of Errors is the best approach for this. (This is all happening in apollo-router/src/plugins/telemetry/mod.rs) The third issue is a bit of a puzzle to me right now. If you call |
Describe the bug
Calling the
set_status
method onSpanRef
doesn't do anything. The status that ends up inDatadog
is stillUnset
.Expected behavior
Should be able to set status on span.
The text was updated successfully, but these errors were encountered: