-
Notifications
You must be signed in to change notification settings - Fork 895
Added SpanProcessor OnEnding callback #6367
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
Merged
jack-berg
merged 18 commits into
open-telemetry:main
from
JonasKunz:span-processor-beforeEnd
Sep 4, 2024
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
f257438
Implemented beforeEnd callback
JonasKunz 55f5244
Rename to onEnding
JonasKunz 528727f
Merge remote-tracking branch 'otel/main' into span-processor-beforeEnd
JonasKunz 046cbe8
Merge remote-tracking branch 'otel/HEAD' into span-processor-beforeEnd
JonasKunz f3fd785
spotless and documentation clarifications
JonasKunz c7ed970
Added jApiCMp output
JonasKunz 2b0c31e
Merge remote-tracking branch 'otel/HEAD' into span-processor-beforeEnd
JonasKunz d623112
Prevent concurrent modifications from other threads instead of holdin…
JonasKunz 78e715b
Moved onEnding to ExtendedSpanProcessor interface
JonasKunz 5e1f295
Merge remote-tracking branch 'otel/HEAD' into span-processor-beforeEnd
JonasKunz 40f1cef
Fixed string representation test
JonasKunz 2f686cf
Apply suggestions from code review
JonasKunz 300b44c
Review fixes
JonasKunz c3b8784
Fix javadoc
JonasKunz 8240cab
Added test case to demonstrate usage
JonasKunz 4aa663c
Apply suggestions from code review
JonasKunz fc67a4d
Make test method package private
JonasKunz 80aa059
Invert isSpanUnmodifiableByCurrentThread
JonasKunz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
sdk/trace/src/main/java/io/opentelemetry/sdk/trace/internal/ExtendedSpanProcessor.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package io.opentelemetry.sdk.trace.internal; | ||
|
||
import io.opentelemetry.api.trace.Span; | ||
import io.opentelemetry.sdk.trace.ReadWriteSpan; | ||
import io.opentelemetry.sdk.trace.ReadableSpan; | ||
import io.opentelemetry.sdk.trace.SpanProcessor; | ||
|
||
/** | ||
* Extended {@link SpanProcessor} with experimental APIs. | ||
* | ||
* <p>This class is internal and is hence not for public use. Its APIs are unstable and can change | ||
* at any time. | ||
*/ | ||
public interface ExtendedSpanProcessor extends SpanProcessor { | ||
|
||
/** | ||
* Called when a {@link io.opentelemetry.api.trace.Span} is ended, but before {@link | ||
* SpanProcessor#onEnd(ReadableSpan)} is invoked with an immutable variant of this span. This | ||
* means that the span will still be mutable. Note that the span will only be modifiable | ||
* synchronously from this callback, concurrent modifications from other threads will be | ||
* prevented. Only called if {@link Span#isRecording()} returns true. | ||
* | ||
* <p>This method is called synchronously on the execution thread, should not throw or block the | ||
* execution thread. | ||
* | ||
* @param span the {@code Span} that is just about to be ended. | ||
*/ | ||
void onEnding(ReadWriteSpan span); | ||
|
||
/** | ||
* Returns {@code true} if this {@link SpanProcessor} requires onEnding events. | ||
* | ||
* @return {@code true} if this {@link SpanProcessor} requires onEnding events. | ||
*/ | ||
boolean isOnEndingRequired(); | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.