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: extensions/micrometer/runtime/src/main/java/io/quarkus/micrometer/runtime/binder/vertx/NetworkMetrics.java
Copy file name to clipboardExpand all lines: extensions/micrometer/runtime/src/main/java/io/quarkus/micrometer/runtime/binder/vertx/VertxTcpClientMetrics.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,8 @@ public class VertxTcpClientMetrics extends NetworkMetrics {
9
9
super(registry, tags, prefix,
10
10
"Number of bytes received by the client",
11
11
"Number of bytes sent by the client",
12
-
"The duration of the connections");
12
+
"The duration of the connections",
13
+
"Number of connections to the remote host currently opened");
Copy file name to clipboardExpand all lines: extensions/micrometer/runtime/src/main/java/io/quarkus/micrometer/runtime/binder/vertx/VertxTcpServerMetrics.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,8 @@ public class VertxTcpServerMetrics extends NetworkMetrics {
9
9
super(registry, tags, prefix,
10
10
"Number of bytes received by the server",
11
11
"Number of bytes sent by the server",
12
-
"The duration of the connections");
12
+
"The duration of the connections",
13
+
"Number of opened connections to the HTTP Server");
0 commit comments