diff --git a/pom.xml b/pom.xml
index 246f1d111db..c8b35f1ab26 100644
--- a/pom.xml
+++ b/pom.xml
@@ -141,6 +141,14 @@
org.springframework.boot
spring-boot-starter
+
+ org.springframework.boot
+ spring-boot-starter-actuator
+
+
+ io.micrometer
+ micrometer-registry-prometheus
+
org.springframework.boot
spring-boot-starter-test
@@ -939,4 +947,4 @@
-
+
\ No newline at end of file
diff --git a/src/main/java/org/cbioportal/legacy/web/GeneralControllerAdvice.java b/src/main/java/org/cbioportal/legacy/web/GeneralControllerAdvice.java
index c4c5347f413..205fd4211cd 100644
--- a/src/main/java/org/cbioportal/legacy/web/GeneralControllerAdvice.java
+++ b/src/main/java/org/cbioportal/legacy/web/GeneralControllerAdvice.java
@@ -9,7 +9,7 @@
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.servlet.mvc.method.annotation.ResponseBodyAdvice;
-@ControllerAdvice
+@ControllerAdvice(basePackages = "org.cbioportal.api")
public class GeneralControllerAdvice implements ResponseBodyAdvice