From ccb5148e535491030a6de26d5e8e4e450af0119e Mon Sep 17 00:00:00 2001 From: lanyuanxiaoyao Date: Sun, 4 Feb 2024 16:33:53 +0800 Subject: [PATCH] =?UTF-8?q?refactor(forest):=20=E4=BC=98=E5=8C=96=E6=8C=87?= =?UTF-8?q?=E6=A0=87=E5=90=8D=E7=A7=B0=20=E6=9B=B4=E5=85=B7=E6=9C=89?= =?UTF-8?q?=E8=BE=A8=E8=AF=86=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/forest/configuration/MetricsInterceptor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/service-forest/src/main/java/com/lanyuanxiaoyao/service/forest/configuration/MetricsInterceptor.java b/service-forest/src/main/java/com/lanyuanxiaoyao/service/forest/configuration/MetricsInterceptor.java index a07b48d..0a3f3b9 100644 --- a/service-forest/src/main/java/com/lanyuanxiaoyao/service/forest/configuration/MetricsInterceptor.java +++ b/service-forest/src/main/java/com/lanyuanxiaoyao/service/forest/configuration/MetricsInterceptor.java @@ -28,8 +28,8 @@ import org.springframework.stereotype.Component; @SuppressWarnings("unchecked") @Component public class MetricsInterceptor implements Interceptor { - public static final String FOREST_SEND_REQUEST = "forest_send_request"; - public static final String FOREST_SEND_REQUEST_SECONDS = "forest_send_request_seconds"; + public static final String FOREST_SEND_REQUEST = "service_forest_send_request"; + public static final String FOREST_SEND_REQUEST_SECONDS = "service_forest_send_request_seconds"; private static final Logger logger = LoggerFactory.getLogger(MetricsInterceptor.class); private static final String PARSED_TAGS = "parsed_tags"; private final MeterRegistry meterRegistry;