in src/main/java/com/epam/digital/data/platform/bpms/admin/config/security/WebAppSecurityConfig.java [77:80]
private void allowAccessToActuatorEndpoints(HttpSecurity http) throws Exception {
log.info("Permit GET requests for anyone to actuator endpoints: {}", ACTUATOR_URL);
http.authorizeRequests().antMatchers(HttpMethod.GET, ACTUATOR_URL).permitAll();
}