diff --git a/src/main/resources/application.yaml b/src/main/resources/application.yaml index aaf73a1..5d0a9a8 100644 --- a/src/main/resources/application.yaml +++ b/src/main/resources/application.yaml @@ -10,18 +10,22 @@ server: management: server: port: 9090 - security: - enabled: false + # security: + # enabled: false endpoints: + # show-details: always web: exposure: include: "*" # Expose all endpoints, you can customize this if needed - endpoint: - health: - show-details: always - prometheus: + prometheus: + enabled: true + health: + probes: + enabled: true + livenessState: + enabled: true + readinessState: enabled: true - metrics: tags: application: ${spring.application.name} @@ -29,4 +33,5 @@ management: prometheus: enabled: true # Enable Prometheus metrics endpoint + # Additional Actuator-specific configuration can be added here