File tree Expand file tree Collapse file tree
src/main/java/com/uid2/operator Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77 <groupId >com.uid2</groupId >
88 <artifactId >uid2-operator</artifactId >
9- <version >5.63.13-alpha-285-SNAPSHOT </version >
9+ <version >5.63.17 </version >
1010
1111 <properties >
1212 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
Original file line number Diff line number Diff line change 11requests [socks ]== 2.32.3
22boto3 == 1.35.59
3- urllib3 == 2.6.0
3+ urllib3 == 2.6.3
44PyYAML === 6.0.2
Original file line number Diff line number Diff line change @@ -517,7 +517,7 @@ private static void setupMetrics(MicrometerMetricsOptions metricOptions) {
517517 // providing common renaming for prometheus metric, e.g. "hello.world" to "hello_world"
518518 .meterFilter (new PrometheusRenameFilter ())
519519 .meterFilter (MeterFilter .replaceTagValues (Label .HTTP_PATH .toString (),
520- actualPath -> HTTPPathMetricFilter .filterPath (actualPath , Endpoints .pathSet ())))
520+ actualPath -> HTTPPathMetricFilter .filterPathWithoutPathParameters (actualPath , Endpoints .pathSet ())))
521521 // Don't record metrics for 404s.
522522 .meterFilter (MeterFilter .deny (id ->
523523 id .getName ().startsWith (MetricsDomain .HTTP_SERVER .getPrefix ()) &&
Original file line number Diff line number Diff line change @@ -29,14 +29,16 @@ public enum Endpoints {
2929 UID2_SDK_1_0_0 ("/static/js/uid2-sdk-1.0.0.js" ),
3030 UID2_SDK_2_0_0 ("/static/js/uid2-sdk-2.0.0.js" )
3131 ;
32- private final String path ;
32+ private static final Set <String > ENDPOINTS_SET = Stream .of (Endpoints .values ()).map (Endpoints ::toString ).collect (Collectors .toSet ());
33+
34+ private final String path ;
3335
3436 Endpoints (final String path ) {
3537 this .path = path ;
3638 }
3739
3840 public static Set <String > pathSet () {
39- return Stream . of ( Endpoints . values ()). map ( Endpoints :: toString ). collect ( Collectors . toSet ()) ;
41+ return ENDPOINTS_SET ;
4042 }
4143
4244 @ Override
You can’t perform that action at this time.
0 commit comments