Package org.eclipse.microprofile.metrics
Rationale
To ensure reliable operation of software it is necessary to monitor essential system parameters. There is already JMX as standard to expose metrics, but remote-JMX is not easy to deal with and especially does not fit well in a polyglot environment where other services are not running on the JVM. To enable monitoring in an easy fashion, the MicroProfile Metrics specification provides a standard to instrument an application with metrics and provides a simple REST endpoint for integration with monitoring services.
Adding Metrics
MicroProfile Metrics provides 4 different metric types that can be used to instrument an application. Developers can
create an accompanying Metadata
object to supply the metric's name,
description and units. Once the metric and the metadata are registered against the application
MetricRegistry
, the metrics will be available in the REST
endpoints.
Metric Types
Counter
is used to measure an increasing value.
Example usage:
Counter count = metricRegistry.counter(metadata);
count.inc();
Gauge
is used to provide the immediate measurement of a value.
Example usage:
Gauge<Double> temperature = new Gauge<Double>() {
public Double getValue() {
return getTemperature();
}
};
metricRegistry.register(metadata, temperature);
Histogram
is used to sample and compute the distribution of values
Example usage:
Histogram histogram = metricRegistry.histogram(metadata);
histogram.update(score);
Timer
is used to measure the duration of an event as well as the
frequency of occurrence.
Example usage:
Timer timer = metricRegistry.timer(metadata);
try (Timer.Context context = timer.time()) {
... // code that will be timed
}
-
ClassDescriptionAn incrementing counter metric.An interface for metric types which have counts.The default implementation of
Metadata
A gauge metric is an instantaneous reading of a particular value.A metric which calculates the distribution of a value.Bean holding the metadata of one single metric.TheMetadata
builder.A tag interface to indicate that a class is a metric.A filter used to determine whether or not a metric should be reported, among other things.A unique identifier forMetric
andMetadata
that are registered in theMetricRegistry
The MetricID contains:Name
: (Required) The name of the metric.Tags
: (Optional) The tags (represented byTag
objects) of the metric.The registry that stores metrics and their metadata.Deprecated.Standard units constants for metric'sMetadata
.An object which samples values.A statistical snapshot of aSnapshot
.Represents a percentile and its value at the moment it was sampled from the Snapshot.Tag represents a singular metric tag key and value pair.A timer metric which aggregates timing durations and provides duration statisticsA timing context.
MetricRegistry.APPLICATION_SCOPE
,MetricRegistry.BASE_SCOPE
orMetricRegistry.VENDOR_SCOPE
withRegistryScope
instead.