Package io.dropwizard.metrics.jersey31
Class MetricsFeature
- java.lang.Object
-
- io.dropwizard.metrics.jersey31.MetricsFeature
-
- All Implemented Interfaces:
jakarta.ws.rs.core.Feature
public class MetricsFeature extends Object implements jakarta.ws.rs.core.Feature
AFeaturewhich registers aInstrumentedResourceMethodApplicationListenerfor recording request events.
-
-
Constructor Summary
Constructors Constructor Description MetricsFeature(com.codahale.metrics.MetricRegistry registry)MetricsFeature(com.codahale.metrics.MetricRegistry registry, com.codahale.metrics.Clock clock)MetricsFeature(com.codahale.metrics.MetricRegistry registry, com.codahale.metrics.Clock clock, boolean trackFilters)MetricsFeature(com.codahale.metrics.MetricRegistry registry, com.codahale.metrics.Clock clock, boolean trackFilters, Supplier<com.codahale.metrics.Reservoir> reservoirSupplier)MetricsFeature(com.codahale.metrics.MetricRegistry registry, Supplier<com.codahale.metrics.Reservoir> reservoirSupplier)MetricsFeature(String registryName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanconfigure(jakarta.ws.rs.core.FeatureContext context)A call-back method called when the feature is to be enabled in a given runtime configuration scope.
-
-
-
Constructor Detail
-
MetricsFeature
public MetricsFeature(com.codahale.metrics.MetricRegistry registry)
-
MetricsFeature
public MetricsFeature(com.codahale.metrics.MetricRegistry registry, Supplier<com.codahale.metrics.Reservoir> reservoirSupplier)
-
MetricsFeature
public MetricsFeature(com.codahale.metrics.MetricRegistry registry, com.codahale.metrics.Clock clock)
-
MetricsFeature
public MetricsFeature(com.codahale.metrics.MetricRegistry registry, com.codahale.metrics.Clock clock, boolean trackFilters)
-
MetricsFeature
public MetricsFeature(com.codahale.metrics.MetricRegistry registry, com.codahale.metrics.Clock clock, boolean trackFilters, Supplier<com.codahale.metrics.Reservoir> reservoirSupplier)
-
MetricsFeature
public MetricsFeature(String registryName)
-
-
Method Detail
-
configure
public boolean configure(jakarta.ws.rs.core.FeatureContext context)
A call-back method called when the feature is to be enabled in a given runtime configuration scope.The responsibility of the feature is to properly update the supplied runtime configuration context and return
trueif the feature was successfully enabled orfalseotherwise.Note that under some circumstances the feature may decide not to enable itself, which is indicated by returning
false. In such case the configuration context does not add the feature to the collection of enabled features and a subsequent call toConfiguration.isEnabled(jakarta.ws.rs.core.Feature)orConfiguration.isEnabled(Class)method would returnfalse.- Specified by:
configurein interfacejakarta.ws.rs.core.Feature- Parameters:
context- configurable context in which the feature should be enabled.- Returns:
trueif the feature was successfully enabled,falseotherwise.
-
-