Skip to content
Snippets Groups Projects
Commit 76234209 authored by Riabokon Stanislav(EPAM)[GCP]'s avatar Riabokon Stanislav(EPAM)[GCP]
Browse files

Added readiness and liveness endpoints

parent 071b2880
Branches
Tags
1 merge request!649Added readiness and liveness endpoints (GONRG-9374)
Pipeline #263220 failed
......@@ -64,3 +64,7 @@ propertyResolver.strategy=partition
# autocomplete feature flag name
featureFlag.strategy=appProperty
featureFlag.autocomplete.enabled=false
management.endpoints.web.exposure.include=health, prometheus
management.health.probes.enabled=true
......@@ -122,6 +122,14 @@
<artifactId>spring-webmvc</artifactId>
<version>${spring-webmvc.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
</dependency>
</dependencies>
<build>
......
......@@ -82,3 +82,6 @@ partition-auth-enabled=false
# autocomplete feature flag name
featureFlag.strategy=appProperty
featureFlag.autocomplete.enabled=false
management.endpoints.web.exposure.include=health
management.health.probes.enabled=true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment