-
Notifications
You must be signed in to change notification settings - Fork 782
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
Add a filter that allows to drop spans #1033
Labels
Milestone
Comments
used with care this can be helpful until there's another way to do the same. |
technically someone can do this now by wrapping the reporter. |
See also openzipkin/zipkin#2072 which is server-side |
marcingrzejszczak
added a commit
that referenced
this issue
Jul 25, 2018
without this change we cannot filter out spans to be sent to Zipkin with this change we give users a hook to achieve that fixes gh-1033
Closed
marcingrzejszczak
added a commit
that referenced
this issue
Jul 25, 2018
without this change we cannot filter out spans to be sent to Zipkin with this change we give users a hook to achieve that fixes gh-1033
See #1096 |
Closing in favour of #1096 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Right now we allow to mutate a Zipkin Span before we send it to Zipkin. Sometimes, however, it could be useful to filter out certain spans.
Adding a filter (
SpanFilter
?) before theSpanAdjuster
would allow to filter out undesired spans.IMPORTANT ONE MUST NOT DROP SPANS THAT HAVE CHILDREN!
The text was updated successfully, but these errors were encountered: