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
17 changed files
with
285 additions
and
96 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
80 changes: 80 additions & 0 deletions
80
server/src/main/java/org/opensearch/action/search/SearchRequestCoordinatorTrace.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,80 @@ | ||
/* | ||
* 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.action.search; | ||
|
||
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 static org.opensearch.core.common.Strings.capitalize; | ||
|
||
/** | ||
* Listener for search request tracing on the coordinator node | ||
* | ||
* @opensearch.internal | ||
*/ | ||
public final class SearchRequestCoordinatorTrace extends SearchRequestOperationsListener { | ||
private final Tracer tracer; | ||
|
||
public SearchRequestCoordinatorTrace(Tracer tracer) { | ||
this.tracer = tracer; | ||
} | ||
|
||
@Override | ||
void onPhaseStart(SearchPhaseContext context, SearchRequestContext searchRequestContext) { | ||
if (searchRequestContext.getPhaseSpan() != null) { | ||
searchRequestContext.getPhaseSpan().endSpan(); | ||
} | ||
searchRequestContext.setPhaseSpan( | ||
tracer.startSpan( | ||
SpanBuilder.from( | ||
"coordinator" + capitalize(context.getCurrentPhase().getName()), | ||
new SpanContext(searchRequestContext.getRequestSpan()) | ||
) | ||
) | ||
); | ||
SpanScope spanScope = tracer.withSpanInScope(searchRequestContext.getPhaseSpan()); | ||
} | ||
|
||
@Override | ||
void onPhaseEnd(SearchPhaseContext context, SearchRequestContext searchRequestContext) { | ||
searchRequestContext.getPhaseSpan().endSpan(); | ||
searchRequestContext.setPhaseSpan(null); | ||
} | ||
|
||
@Override | ||
void onPhaseFailure(SearchPhaseContext context, SearchRequestContext searchRequestContext) { | ||
searchRequestContext.getPhaseSpan().endSpan(); | ||
searchRequestContext.setPhaseSpan(null); | ||
} | ||
|
||
@Override | ||
void onRequestEnd(SearchRequestContext searchRequestContext) { | ||
Span requestSpan = searchRequestContext.getRequestSpan(); | ||
|
||
// add response-related attributes on request end | ||
requestSpan.addAttribute( | ||
AttributeNames.TOTAL_HITS, | ||
searchRequestContext.totalHits() == null ? "0" : searchRequestContext.totalHits().toString() | ||
); | ||
requestSpan.addAttribute( | ||
AttributeNames.SHARDS, | ||
searchRequestContext.formattedShardStats().isEmpty() ? "no data" : searchRequestContext.formattedShardStats() | ||
); | ||
requestSpan.addAttribute( | ||
AttributeNames.SOURCE, | ||
searchRequestContext.getSearchRequest().source() == null | ||
? "no source" | ||
: searchRequestContext.getSearchRequest().source().toString() | ||
); | ||
} | ||
} |
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
Oops, something went wrong.