You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/it/gov/pagopa/template/performancelogger/ApiRequestPerformanceLogger.java
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,6 @@
3
3
importjakarta.servlet.*;
4
4
importjakarta.servlet.http.HttpServletRequest;
5
5
importjakarta.servlet.http.HttpServletResponse;
6
-
importorg.springframework.core.Ordered;
7
6
importorg.springframework.core.annotation.Order;
8
7
importorg.springframework.stereotype.Service;
9
8
@@ -14,7 +13,7 @@
14
13
* It will execute {@link PerformanceLogger} on each Api request
15
14
*/
16
15
@Service
17
-
@Order(Ordered.HIGHEST_PRECEDENCE)
16
+
@Order(-101) // Set in order to be executed after ServerHttpObservationFilter (which will handle traceId): configured through properties management.observations.http.server.filter.order
0 commit comments