-
Notifications
You must be signed in to change notification settings - Fork 227
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
[META 497] Collecting statistics about dropped spans #2302
Comments
Looking at the spec and using the java agent's implementation as a reference, it looks like span statistics make the assumption that even a span that's not kept still exists for the lifetime of a transaction. Specifically, the statistics include data that's only avaiable at span end (the ex. when the Node.js agent exceeds the transaction-max-spans limit, our Therefore, in order to implement span statistics, we'll need to change our implementation such that spans are created but their context marked to indicate that recorded/sampled=false when transaction-max-span is exceeded and to not report spans that are unsampled. Work to be done
|
* feat: setRecorded for traceparent/tracecontext Part of #2302
As described in this spec, agents should collect statistics on dropped spans.
Meta issue:
The text was updated successfully, but these errors were encountered: