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
If we have spans like
A > B > C
A > B
B > C
but a warning show up that span B has invalid parent span
A > C
but got
A C
and warning show up that span C has invalid parent span warning by jaeger: invalid parent span IDs=c6ababd1d88b00b1; skipping clock skew adjustment.
invalid parent span IDs=c6ababd1d88b00b1; skipping clock skew adjustment
Could we reset children's parent span id to fix such skew?
The text was updated successfully, but these errors were encountered:
For the sake of documentation, I think these are related:
Could you please tell us how you "drop" spans? Are you using an ObservationPredicate or a SpanExportingPredicate or a SpanHandler or something else?
ObservationPredicate
SpanExportingPredicate
SpanHandler
Sorry, something went wrong.
For the sake of documentation, I think these are related: Introduce withParentOnly for @Observed micrometer#3843 Provide a simple way to make decisions based on the parent in ObservationPredicate micrometer#3678 Could you please tell us how you "drop" spans? Are you using an ObservationPredicate or a SpanExportingPredicate or a SpanHandler or something else?
For example I want to drop connection but want to keep it's descendants.
connection
@Bean SpanExportingPredicate noConnectionSpanExportingPredicate() { return span -> !span.getName().equals("connection"); }
Sometime I want to drop connection and it's descendants, hopeful both cases are supported.
No branches or pull requests
If we have spans like
but a warning show up that span B has invalid parent span
but got
and warning show up that span C has invalid parent span
warning by jaeger:
invalid parent span IDs=c6ababd1d88b00b1; skipping clock skew adjustment
.Could we reset children's parent span id to fix such skew?
The text was updated successfully, but these errors were encountered: