All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.micrometer.runtime.binder.vertx.VertxTcpServerMetrics Maven / Gradle / Ivy

Go to download

Instrument the runtime and your application with dimensional metrics using Micrometer.

There is a newer version: 3.17.5
Show newest version
package io.quarkus.micrometer.runtime.binder.vertx;

import io.micrometer.core.instrument.MeterRegistry;
import io.micrometer.core.instrument.Tags;

public class VertxTcpServerMetrics extends NetworkMetrics {

    VertxTcpServerMetrics(MeterRegistry registry, String prefix, Tags tags) {
        super(registry, tags, prefix,
                "Number of bytes received by the server",
                "Number of bytes sent by the server",
                "The duration of the connections");
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy