We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96a02e6 commit c3861bfCopy full SHA for c3861bf
2 files changed
src/main/kotlin/kr/io/team/loop/common/config/SecurityConfig.kt
@@ -26,6 +26,7 @@ class SecurityConfig {
26
authorize("/graphql", permitAll)
27
authorize("/h2-console/**", permitAll)
28
authorize("/actuator/health/**", permitAll)
29
+ authorize("/actuator/prometheus", permitAll)
30
authorize(anyRequest, authenticated)
31
}
32
headers {
src/main/resources/application.yml
@@ -12,6 +12,10 @@ spring:
12
generate-ddl: false
13
14
management:
15
+ endpoints:
16
+ web:
17
+ exposure:
18
+ include: health, prometheus
19
endpoint:
20
health:
21
probes:
0 commit comments