Spring Boot here. What are the possible values that one can specify for the management.trace.include
property in application.properties
, what are this property's default values, and where is all of this documented (pro tip: it's not!)?
Asked
Active
Viewed 2,995 times
3

smeeb
- 27,777
- 57
- 250
- 447
-
Found [this list of valid properties](https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html) but that doesn't tell me what the possible values are. – smeeb Mar 26 '18 at 13:15
2 Answers
3
For Spring Boot 2.1.0 it is:
org.springframework.boot.actuate.trace.http.Include
To see its values, see (enum constansts are processed by Spring - AUTHORIZATION_HEADER becomes authorization-header):
Default value can be found here:

Jan Mares
- 795
- 10
- 22