-
Notifications
You must be signed in to change notification settings - Fork 858
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use HttpRouteHolder in spark instrumentation (#5241)
- Loading branch information
Mateusz Rzeszutek
authored
Jan 27, 2022
1 parent
9ff7b92
commit 817b3d2
Showing
3 changed files
with
29 additions
and
11 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
25 changes: 25 additions & 0 deletions
25
...src/main/java/io/opentelemetry/javaagent/instrumentation/sparkjava/SparkRouteUpdater.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,25 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package io.opentelemetry.javaagent.instrumentation.sparkjava; | ||
|
||
import io.opentelemetry.context.Context; | ||
import io.opentelemetry.instrumentation.api.instrumenter.http.HttpRouteHolder; | ||
import io.opentelemetry.instrumentation.api.instrumenter.http.HttpRouteSource; | ||
import javax.annotation.Nullable; | ||
import spark.routematch.RouteMatch; | ||
|
||
public final class SparkRouteUpdater { | ||
|
||
public static void updateHttpRoute(@Nullable RouteMatch routeMatch) { | ||
if (routeMatch != null) { | ||
Context context = Context.current(); | ||
HttpRouteHolder.updateHttpRoute( | ||
context, HttpRouteSource.CONTROLLER, (c, r) -> r.getMatchUri(), routeMatch); | ||
} | ||
} | ||
|
||
private SparkRouteUpdater() {} | ||
} |
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