Polish
This commit is contained in:
parent
e6cf082dbc
commit
64c668f766
|
@ -33,14 +33,7 @@ public class SampleActuatorApplication {
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
public HealthIndicator helloHealthIndicator() {
|
public HealthIndicator helloHealthIndicator() {
|
||||||
return new HealthIndicator() {
|
return () -> Health.up().withDetail("hello", "world").build();
|
||||||
|
|
||||||
@Override
|
|
||||||
public Health health() {
|
|
||||||
return Health.up().withDetail("hello", "world").build();
|
|
||||||
}
|
|
||||||
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,4 +18,4 @@ spring.jmx.enabled=true
|
||||||
|
|
||||||
spring.jackson.serialization.write_dates_as_timestamps=false
|
spring.jackson.serialization.write_dates_as_timestamps=false
|
||||||
|
|
||||||
management.httptrace.include=REQUEST_HEADERS,RESPONSE_HEADERS,PRINCIPAL,REMOTE_ADDRESS,SESSION_ID
|
management.trace.http.include=request-headers,response-headers,principal,remote-address,session-id
|
||||||
|
|
Loading…
Reference in New Issue