From 04c6c1b7f92d3f8a5ad3b2a41d7b636a839595aa Mon Sep 17 00:00:00 2001 From: "J. Wu" Date: Wed, 7 Jun 2023 20:30:18 +0800 Subject: [PATCH] replace the metrics in HttpServerListener with micrometer and update dependency in common --- .../io/mantisrx/common/metrics/netty/HttpServerListener.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mantis-common/src/main/java/io/mantisrx/common/metrics/netty/HttpServerListener.java b/mantis-common/src/main/java/io/mantisrx/common/metrics/netty/HttpServerListener.java index e33b260d1..57dec8cc9 100644 --- a/mantis-common/src/main/java/io/mantisrx/common/metrics/netty/HttpServerListener.java +++ b/mantis-common/src/main/java/io/mantisrx/common/metrics/netty/HttpServerListener.java @@ -118,7 +118,7 @@ protected void onRequestHandlingSuccess(long duration, TimeUnit timeUnit) { @Override protected void onResponseContentWriteSuccess(long duration, TimeUnit timeUnit) { - + // responseWriteTimes.record(duration, timeUnit); } @Override