-
Notifications
You must be signed in to change notification settings - Fork 870
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
Make server.socket.*
attributes on the HTTP server side opt-in
#8747
Make server.socket.*
attributes on the HTTP server side opt-in
#8747
Conversation
@CanIgnoreReturnValue | ||
public HttpServerAttributesExtractorBuilder<REQUEST, RESPONSE> setCaptureServerSocketAttributes( | ||
boolean captureServerSocketAttributes) { | ||
this.captureServerSocketAttributes = captureServerSocketAttributes; | ||
return this; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My understanding is that we don't have to support opt-in things. I'd personally suggest we not provide this configuration unless someone has specific need now, and we can wait to see how your advice PR pans out.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instrumentations SHOULD populate the attribute if and only if the user configures the instrumentation to do so. Instrumentation that doesn't support configuration MUST NOT populate Opt-In attributes.
It's not very explicit about optional support for these; although there is a "SHOULD" here, so it flies, I think. I'm fine with that; and also this is a good subject for the general advice proposed in #3557
f3ae319
to
1043077
Compare
1043077
to
655ad34
Compare
@open-telemetry/java-instrumentation-approvers please review this PR 🙏 |
@lmolkova do you remember why |
655ad34
to
b45ffd7
Compare
One reason I can think about is that they represent local host/port and are the same for all spans coming from a typical single-host application - this way they're captured best with resource attributes |
This is just the span attributes; for metric attributes I'm hoping that my idea to use the advice API catches on.