10 Using Coherence MicroProfile Metrics
This chapter includes the following topics:
- Enabling the Use of Coherence MP Metrics
To use Coherence MP Metrics, you should first declare it as a dependency in thepom.xml
file. - Coherence Global Tags
To help distinguish metrics coming from different clusters, as well as from different members of the same cluster, Coherence MP Metrics automatically adds several tags to all the metrics published within the process.
Enabling the Use of Coherence MP Metrics
To use Coherence MP Metrics, you should first declare it as a dependency in
the pom.xml
file.
<dependency>
<groupId>${coherence.groupId}</groupId>
<artifactId>coherence-mp-metrics</artifactId>
<version>${coherence.version}</version>
</dependency>
After the module becomes available in the class path, Coherence will discover the
MpMetricRegistryAdapter
service it provides, and use it to publish
all standard Coherence metrics to the vendor registry, and any user-defined application
metrics to the application registry.
All the metrics will be published as gauges, because they represent point-in-time values of various MBean attributes.
Parent topic: Using Coherence MicroProfile Metrics
Coherence Global Tags
Table 10-1 Tags Used by Coherence MP Metrics
Tag Name | Tag Value |
---|---|
|
The name of the cluster. |
|
The site to which the member belongs (if set). |
|
The machine on which the member is present (if set). |
|
The name of the member (if set). |
|
The node ID of the member. |
|
The member’s role. |
Tagging ensures that the metrics published by one member do not collide with and overwrite the metrics published by other members. Tagging also helps you query and aggregate metrics based on the values of the tags above, if required.
Parent topic: Using Coherence MicroProfile Metrics