aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/application.properties
diff options
context:
space:
mode:
authorShantaram Sawant <s.shantaram.sawant@accenture.com>2024-10-01 17:07:03 +0530
committerShantaram Sawant <s.shantaram.sawant@accenture.com>2024-10-03 16:46:13 +0530
commit0a9a06196c1a7b6988196c2fa6f604355429b851 (patch)
tree884ed106f1809d322574718903d01936a85ce8fa /src/main/resources/application.properties
parent9ed3ba5e6d480af6ae9bc19c2b9da1ac584f0b98 (diff)
echo liveness probe available under /actuator/health
- Include database connectivity check in the /echo API of AAI modules. Issue-ID: AAI-3999 Change-Id: Ia6eb3ded705e6b5b3f1db0cd9605376a2f442e68 Signed-off-by: Shantaram Sawant <s.shantaram.sawant@accenture.com>
Diffstat (limited to 'src/main/resources/application.properties')
-rw-r--r--src/main/resources/application.properties12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties
index 1eb0bed..47ab0bc 100644
--- a/src/main/resources/application.properties
+++ b/src/main/resources/application.properties
@@ -98,7 +98,15 @@ aperture.service.timeout-in-milliseconds=300000
#To Expose the Prometheus scraping endpoint
management.server.port=8448
#To Enable Actuator Endpoint, you can override this to True in OOM charts
-management.endpoints.enabled-by-default=false
+management.endpoints.enabled-by-default=true
#To Enable Actuator Endpoint, you can override this in OOM Charts
-#management.endpoints.web.exposure.include=info, health, loggers, prometheus
+management.endpoints.web.exposure.include=info, health, loggers, prometheus
management.metrics.web.server.auto-time-requests=false
+
+# If true, the actuator health check will be overriden
+# to use the AaiGraphChecker check instead
+# this does the same as the /echo endpoint,
+# but doesn't show up in micrometer metrics
+aai.actuator.echo.enabled=false
+
+