-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Update addEvent API to attach events to span in Context #22332
Conversation
@@ -199,11 +199,20 @@ public Context getSharedSpanBuilder(String spanName, Context context) { | |||
*/ | |||
@Override | |||
public void addEvent(String eventName, Map<String, Object> traceEventAttributes, OffsetDateTime timestamp) { | |||
addEvent(eventName, traceEventAttributes, timestamp, Context.NONE); |
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.
Why we need this api , Context.NONE will not have the span info ?
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.
Since this is an existing API and we do not want to break any existing users using this API by removing it.
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.
Can we do deprecation,document update because this method will return without doing anything, so could be misleading.
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.
BTW, it doesn't look like there are any users https://github.com/Azure/azure-sdk-for-java/search?q=addevent. are we expecting anyone outside of this repo to use it?
I understand it's a public API and can't be simply removed. Agree that deprecation would be great.
Just curious if we expect anyone else to ever use it :)
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.
are we expecting anyone outside of this repo to use it?
Anyone using their own implementation of the azure-core, Tracer class would/could be using this API.
Also, we sort to deprecation as the last resort and if use any workarounds instead according to our guidance here
https://github.com/Azure/azure-sdk-for-java/wiki/Deprecation
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.
yeah, I'm checking my understanding: if something calls into addEvent (which would be one of the Azure client libraries), then custom Tracer implementation would override it. But nothing calls it yet, correct?
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.
is this needed to maintain existing behavior? (agree hopefully no one is using it anyways)
addEvent(eventName, traceEventAttributes, timestamp, Context.NONE); | |
addEvent(eventName, traceEventAttributes, timestamp, new Context(PARENT_SPAN_KEY, Span.current())); |
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.
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.
(I would also support deprecation, this method does seem a bit out of place since the azure tracing API seems generally designed around passing explicit context)
/azp run java - core - ci |
Azure Pipelines successfully started running 1 pipeline(s). |
if (currentSpan == null) { | ||
logger.info("Failed to find a starting span to associate the %s with.", eventName); | ||
logger.info("Failed to find a starting span to associate the event %s with.", eventName); |
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.
Not related, but do we think this log message should be VERBOSE
level?
This pull request is protected by Check Enforcer. What is Check Enforcer?Check Enforcer helps ensure all pull requests are covered by at least one check-run (typically an Azure Pipeline). When all check-runs associated with this pull request pass then Check Enforcer itself will pass. Why am I getting this message?You are getting this message because Check Enforcer did not detect any check-runs being associated with this pull request within five minutes. This may indicate that your pull request is not covered by any pipelines and so Check Enforcer is correctly blocking the pull request being merged. What should I do now?If the check-enforcer check-run is not passing and all other check-runs associated with this PR are passing (excluding license-cla) then you could try telling Check Enforcer to evaluate your pull request again. You can do this by adding a comment to this pull request as follows: What if I am onboarding a new service?Often, new services do not have validation pipelines associated with them, in order to bootstrap pipelines for a new service, you can issue the following command as a pull request comment: |
@@ -251,4 +251,23 @@ default Context getSharedSpanBuilder(String spanName, Context context) { | |||
*/ | |||
default void addEvent(String name, Map<String, Object> attributes, OffsetDateTime timestamp) { |
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.
Are we not deprecating this as @trask suggested? I agree that this interface design is centered around passing the Context
to each method. So, this method should be deprecated and still use the default behavior to use the current span if someone calls it.
Objects.requireNonNull(eventName, "'eventName' cannot be null."); | ||
|
||
Span currentSpan = Span.current(); | ||
Span currentSpan = getOrDefault(context, PARENT_SPAN_KEY, null, Span.class); | ||
if (currentSpan == null) { | ||
logger.info("Failed to find a starting span to associate the {} with.", eventName); |
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.
could this be logged at verbose
level?
Closes #22115