Skip to content
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

Consider creating metrics for dropped span information #766

Open
jkwatson opened this issue Jan 17, 2020 · 1 comment
Open

Consider creating metrics for dropped span information #766

jkwatson opened this issue Jan 17, 2020 · 1 comment

Comments

@jkwatson
Copy link
Contributor

Links, attributes and events all have a maximum. If it is exceeded, we'll start dropping data. We should consider incrementing OTel counters when we do so.

jkwatson pushed a commit to newrelic-forks/opentelemetry-java that referenced this issue Jan 17, 2020
@arminru
Copy link
Member

arminru commented Jan 17, 2020

see also:

if (spansList.size() == maxQueueSize) {
// TODO: Record a counter for dropped spans.
return;
}
// TODO: Record a gauge for referenced spans.

bogdandrutu pushed a commit that referenced this issue Jan 17, 2020
* ignore links beyond the limit, rather than waiting until the end to truncate on span creation.

* update for changes from upstream

* remove the todo; replaced with #766
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants