From 34ef850730b7b2bd03d2a197103e41a9cd771a81 Mon Sep 17 00:00:00 2001 From: Patrick Sy Date: Fri, 13 Dec 2024 07:04:36 +0100 Subject: [PATCH] feat(prometheus): add prometheus connector deps --- build.gradle | 1 + pom.xml | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/build.gradle b/build.gradle index 17c3763..36de758 100644 --- a/build.gradle +++ b/build.gradle @@ -40,6 +40,7 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-validation' + implementation 'io.micrometer:micrometer-registry-prometheus' implementation 'javax.cache:cache-api' implementation 'jakarta.xml.bind:jakarta.xml.bind-api' runtimeOnly 'org.springframework.boot:spring-boot-starter-actuator' diff --git a/pom.xml b/pom.xml index 9b9b815..ef2dbcc 100644 --- a/pom.xml +++ b/pom.xml @@ -152,6 +152,11 @@ jakarta.xml.bind-api + + io.micrometer + micrometer-registry-prometheus + +