io.quarkus.micrometer.runtime.binder.vertx.VertxTcpClientMetrics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-micrometer Show documentation
Show all versions of quarkus-micrometer Show documentation
Instrument the runtime and your application with dimensional metrics using Micrometer.
package io.quarkus.micrometer.runtime.binder.vertx;
import io.micrometer.core.instrument.MeterRegistry;
import io.micrometer.core.instrument.Tags;
public class VertxTcpClientMetrics extends NetworkMetrics {
VertxTcpClientMetrics(MeterRegistry registry, String prefix, Tags tags) {
super(registry, tags, prefix,
"Number of bytes received by the client",
"Number of bytes sent by the client",
"The duration of the connections");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy