hikaricp.png
Spring Boot HikariCP / JDBC dashboard will display the metrics from micrometer. You can setup the application name and the region in your Spring Boot app with the properties:
spring:
application:
name: my-service
datasource:
hikari:
pool-name: custom-pool-name # optional
management:
endpoints:
web:
exposure:
include: ["*"] # customize to your need
metrics:
tags:
application: ${spring.application.name}
region: my-region
Updated for Spring Boot 2.1.x