forked from opensearch-project/OpenSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: David Zane <[email protected]>
- Loading branch information
Showing
10 changed files
with
246 additions
and
41 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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
72 changes: 72 additions & 0 deletions
72
...a/org/opensearch/telemetry/tracing/listener/TraceableSearchRequestOperationsListener.java
This file contains 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,72 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
*/ | ||
|
||
package org.opensearch.telemetry.tracing.listener; | ||
|
||
import org.opensearch.action.search.SearchPhaseContext; | ||
import org.opensearch.action.search.SearchRequestContext; | ||
import org.opensearch.action.search.SearchRequestOperationsListener; | ||
import org.opensearch.telemetry.tracing.AttributeNames; | ||
import org.opensearch.telemetry.tracing.Span; | ||
import org.opensearch.telemetry.tracing.SpanBuilder; | ||
import org.opensearch.telemetry.tracing.SpanContext; | ||
import org.opensearch.telemetry.tracing.SpanScope; | ||
import org.opensearch.telemetry.tracing.Tracer; | ||
import org.opensearch.telemetry.tracing.noop.NoopSpan; | ||
|
||
import static org.opensearch.core.common.Strings.capitalize; | ||
|
||
/** | ||
* SearchRequestOperationsListener subscriber for search request tracing | ||
* | ||
* @opensearch.internal | ||
*/ | ||
public final class TraceableSearchRequestOperationsListener extends SearchRequestOperationsListener { | ||
private final Tracer tracer; | ||
private final Span requestSpan; | ||
private Span phaseSpan; | ||
private SpanScope phaseSpanScope; | ||
|
||
public TraceableSearchRequestOperationsListener(final Tracer tracer, final Span requestSpan) { | ||
this.tracer = tracer; | ||
this.requestSpan = requestSpan; | ||
this.phaseSpan = NoopSpan.INSTANCE; | ||
} | ||
|
||
@Override | ||
protected void onPhaseStart(SearchPhaseContext context) { | ||
phaseSpan = tracer.startSpan( | ||
SpanBuilder.from("coord" + capitalize(context.getCurrentPhase().getName()), new SpanContext(requestSpan)) | ||
); | ||
phaseSpanScope = tracer.withSpanInScope(phaseSpan); | ||
} | ||
|
||
@Override | ||
protected void onPhaseEnd(SearchPhaseContext context, SearchRequestContext searchRequestContext) { | ||
phaseSpan.endSpan(); | ||
phaseSpanScope.close(); | ||
} | ||
|
||
@Override | ||
protected void onPhaseFailure(SearchPhaseContext context) { | ||
phaseSpan.endSpan(); | ||
phaseSpanScope.close(); | ||
} | ||
|
||
@Override | ||
public void onRequestStart(SearchRequestContext searchRequestContext) {} | ||
|
||
@Override | ||
public void onRequestEnd(SearchPhaseContext context, SearchRequestContext searchRequestContext) { | ||
// add response-related attributes on request end | ||
requestSpan.addAttribute( | ||
AttributeNames.TOTAL_HITS, | ||
searchRequestContext.totalHits() == null ? 0 : searchRequestContext.totalHits().value | ||
); | ||
} | ||
} |
This file contains 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.