Installing
It is recommended to use the BOM provided by Micrometer (or your framework if any), you can see how to configure it here. The examples below assume you are using a BOM.
Gradle
After the BOM is configured, add the following dependency:
implementation 'io.micrometer:micrometer-observation'
The version is not needed for this dependency since it is defined by the BOM. |
Maven
After the BOM is configured, add the following dependency:
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-observation</artifactId>
</dependency>
The version is not needed for this dependency since it is defined by the BOM. |