Releases: microprofile/microprofile-metrics
MicroProfile Metrics 1.0.2
This is a patch release that fixes some issues with the TCK.
To get started with MicroProfile Metrics 1.0.2, add the following dependency to your pom:
<dependency>
<groupId>org.eclipse.microprofile.metrics</groupId>
<artifactId>microprofile-metrics-api</artifactId>
<version>1.0.2</version>
</dependency>
1.0.2-RC2
This is a patch release that fixes some issues with the TCK.
To get started with MicroProfile Metrics 1.0.2-RC2, add the following dependency to your pom:
<dependency>
<groupId>org.eclipse.microprofile.metrics</groupId>
<artifactId>microprofile-metrics-api</artifactId>
<version>1.0.2-RC2</version>
</dependency>
MicroProfile Metrics 1.1.1
This is a patch release that fixes some issues with the TCK and also one typo in the spec document.
To get started with MicroProfile Metrics 1.1.1, add the following dependency to your pom:
<dependency>
<groupId>org.eclipse.microprofile.metrics</groupId>
<artifactId>microprofile-metrics-api</artifactId>
<version>1.1.1</version>
</dependency>
MicroProfile Metrics 1.1
Changes in 1.1 releative to 1.0 are
- Improved TCK
org.eclipse.microprofile.metrics.MetricRegistry.register(String name, Metric, Metadata)
is deprecated.
Useorg.eclipse.microprofile.metrics.MetricRegistry.register(Metadata, Metric)
instead, whereMetadata
already has a field for the name.- Global tags are now supplied via the means of MicroProfile Config (the env variable is still valid).
- Annotations and
Metadata
can now have a flagreusable
that indicates that the metric name can be registered more than once. Default isfalse
as in Metrics 1.0.
To get started with MicroProfile Metrics 1.1, add the following dependency to your pom:
<dependency>
<groupId>org.eclipse.microprofile.metrics</groupId>
<artifactId>microprofile-metrics-api</artifactId>
<version>1.1</version>
</dependency>
1.1-RC2
1.1-RC1
1.0.1
This release enhances the TCK to more throughly test the implementations.
Have a look at https://github.com/eclipse/microprofile-metrics/milestone/3?closed=1 for a list of changes.
MicroProfile Metrics 1.0
To get started with MicroProfile Metrics 1.0, add the following dependency to your pom:
<dependency>
<groupId>org.eclipse.microprofile.metrics</groupId>
<artifactId>microprofile-metrics-api</artifactId>
<version>1.0</version>
</dependency>
1.0-RC3
1.0-RC2 Release
Another prerelease to snapshot the current progress.