-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
18 changed files
with
273 additions
and
42 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
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
82 changes: 82 additions & 0 deletions
82
...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,82 @@ | ||
/* | ||
* 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 Span requestSpan; | ||
private Span phaseSpan; | ||
private SpanScope phaseSpanScope; | ||
|
||
public TraceableSearchRequestOperationsListener(Tracer tracer) { | ||
this.tracer = tracer; | ||
this.requestSpan = NoopSpan.INSTANCE; | ||
this.phaseSpan = NoopSpan.INSTANCE; | ||
} | ||
|
||
@Override | ||
protected void onPhaseStart(SearchPhaseContext context, SearchRequestContext searchRequestContext) { | ||
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, SearchRequestContext searchRequestContext) { | ||
phaseSpan.endSpan(); | ||
phaseSpanScope.close(); | ||
} | ||
|
||
@Override | ||
public void onRequestStart(SearchRequestContext searchRequestContext) { | ||
requestSpan = tracer.startSpan(SpanBuilder.from("coordReq")); | ||
} | ||
|
||
@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 | ||
); | ||
requestSpan.addAttribute( | ||
AttributeNames.SHARDS, | ||
searchRequestContext.formattedShardStats().isEmpty() ? "null" : searchRequestContext.formattedShardStats() | ||
); | ||
} | ||
|
||
public Span getRequestSpan() { | ||
return requestSpan; | ||
} | ||
} |
Oops, something went wrong.