Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions services/alarm-logger/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-streams</artifactId>
Expand Down
12 changes: 11 additions & 1 deletion services/alarm-logger/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,14 @@ retain_indices_count=0
purge_cron_expr=0 0 0 * * SUN
##############################################################################

logging.config=classpath:alarm_logger_logging.properties
logging.config=classpath:alarm_logger_logging.properties

########### Spring Boot Actuator Configuration #############
# Enable actuator endpoints
management.endpoints.web.exposure.include=health,info,metrics,loggers,env

# Base path for actuator endpoints (default is /actuator)
# management.endpoints.web.base-path=/actuator

# Enable info endpoint
management.info.env.enabled=true
5 changes: 5 additions & 0 deletions services/save-and-restore/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,11 @@
<artifactId>spring-security-test</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

<dependency>
<groupId>jakarta.json</groupId>
<artifactId>jakarta.json-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,13 @@ role.admin=sar-admin
############## EPICS related #################
connection.timeout=5000
write.timout=5000

########### Spring Boot Actuator Configuration #############
# Enable actuator endpoints
management.endpoints.web.exposure.include=health,info,metrics,loggers,env

# Base path for actuator endpoints (default is /actuator)
# management.endpoints.web.base-path=/actuator

# Enable info endpoint
management.info.env.enabled=true