diff --git a/src/main/resources/application-dev.yml b/src/main/resources/application-dev.yml index ed5005a5..71f56ffe 100644 --- a/src/main/resources/application-dev.yml +++ b/src/main/resources/application-dev.yml @@ -132,10 +132,13 @@ jwt: master-jwt: ${JWT_MASTER_SECRET} management: + metrics: + tags: + application: ${spring.application.name} endpoints: web: exposure: - include: health,info,metrics,env,beans,prometheus + include: health, prometheus endpoint: health: show-details: always diff --git a/src/main/resources/application-prod.yml b/src/main/resources/application-prod.yml index d60c4360..55250329 100644 --- a/src/main/resources/application-prod.yml +++ b/src/main/resources/application-prod.yml @@ -139,10 +139,13 @@ jwt: master-jwt: ${JWT_MASTER_SECRET} management: + metrics: + tags: + application: ${spring.application.name} endpoints: web: exposure: - include: health,info,metrics,prometheus + include: health, prometheus endpoint: health: show-details: never