io.quarkus.micrometer.runtime.config.runtime.VertxConfig 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.config.runtime;
import java.util.List;
import java.util.Optional;
import io.quarkus.runtime.annotations.ConfigItem;
import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;
@ConfigRoot(name = "micrometer.binder.vertx", phase = ConfigPhase.RUN_TIME)
public class VertxConfig {
/**
* @deprecated use {@code quarkus.micrometer.binder.http-server.match-patterns}
*/
@Deprecated
@ConfigItem
public Optional> matchPatterns = Optional.empty();
/**
* Comma-separated list of regular expressions defining uri paths
* that should be ignored (not measured).
*
* @deprecated use {@code quarkus.micrometer.binder.http-server.ignore-patterns}
*/
@Deprecated
@ConfigItem
public Optional> ignorePatterns = Optional.empty();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy