Skip to content
Snippets Groups Projects
Commit 2b9d4f49 authored by Alžbeta Hajná's avatar Alžbeta Hajná
Browse files

feat: actuator health

parent 56e61e5c
No related branches found
No related tags found
2 merge requests!54Merge develop into main,!42Resolve "Actuator"
...@@ -159,6 +159,13 @@ ...@@ -159,6 +159,13 @@
<artifactId>jackson-datatype-jsr310</artifactId> <artifactId>jackson-datatype-jsr310</artifactId>
</dependency> </dependency>
<!-- Actuator dependency-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies> </dependencies>
</project> </project>
\ No newline at end of file
...@@ -11,4 +11,9 @@ spring.jpa.show-sql=true ...@@ -11,4 +11,9 @@ spring.jpa.show-sql=true
spring.jackson.property-naming-strategy=SNAKE_CASE spring.jackson.property-naming-strategy=SNAKE_CASE
spring.cache.type=NONE spring.cache.type=NONE
spring.profiles.active=dev spring.profiles.active=dev
appconfig.enablecache=false appconfig.enablecache=false
\ No newline at end of file
management.endpoints.web.exposure.include=info,health,metrics,loggers,beans
management.endpoint.health.show-details=always
management.endpoint.health.show-components=always
management.endpoint.health.probes.enabled=true
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment