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
We do a great deal of unnecessary string concatenation in span names which can be completely avoided for unsampled traces:
tracing-java/tracing-jersey/src/main/java/com/palantir/tracing/jersey/TraceEnrichingFilter.java
Line 62 in c63567e
tracing-java/tracing-okhttp3/src/main/java/com/palantir/tracing/okhttp3/OkhttpTraceInterceptor.java
Line 42 in c63567e
Slf4j style overloads to construct trace strings only for sampled operations
The text was updated successfully, but these errors were encountered:
Instead of parameterized methods we could take Supplier<String>.
Supplier<String>
Sorry, something went wrong.
Fix #177: Add APIs for Supplier<String> operation names
ab5a181
No branches or pull requests
What happened?
We do a great deal of unnecessary string concatenation in span names which can be completely avoided for unsampled traces:
tracing-java/tracing-jersey/src/main/java/com/palantir/tracing/jersey/TraceEnrichingFilter.java
Line 62 in c63567e
tracing-java/tracing-okhttp3/src/main/java/com/palantir/tracing/okhttp3/OkhttpTraceInterceptor.java
Line 42 in c63567e
What did you want to happen?
Slf4j style overloads to construct trace strings only for sampled operations
The text was updated successfully, but these errors were encountered: