Spring Boot
Monitoring spring boot applications using Apica Ascent
Spring Boot Actuator and Micrometer
Enabling Actuator and Micrometer dependencies
// Enable Actuator dependency
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
// Enable Micrometer Prometheus dependency
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
<scope>runtime</scope>
</dependency>

Enable API Timings



Last updated
Was this helpful?