You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit introduces manual metadata for the endpoints.all.* namespace
and polish the appendix following the work that happened in spring-projects#9692
endpoints.configprops.cache.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
1110
+
endpoints.configprops.enabled=true # Enable the configprops endpoint.
1111
+
endpoints.configprops.jmx.enabled=true # Expose the configprops endpoint as a JMX MBean.
1091
1112
endpoints.configprops.keys-to-sanitize=password,secret,key,token,.*credentials.*,vcap_services # Keys that should be sanitized. Keys can be simple strings that the property ends with or regex expressions.
1092
-
endpoints.env.enabled= # Enable the endpoint.
1093
-
endpoints.env.keys-to-sanitize=password,secret,key,token,.*credentials.*,vcap_services # Keys that should be sanitized. Keys can be simple strings that the property ends with or regex expressions.
1094
-
endpoints.flyway.enabled= # Enable the endpoint.
1095
-
endpoints.health.enabled= # Enable the endpoint.
1096
-
endpoints.health.mapping.*= # Mapping of health statuses to HttpStatus codes. By default, registered health statuses map to sensible defaults (i.e. UP maps to 200).
1097
-
endpoints.heapdump.enabled= # Enable the endpoint.
1098
-
endpoints.info.enabled= # Enable the endpoint.
1099
-
endpoints.liquibase.enabled= # Enable the endpoint.
1100
-
endpoints.logfile.enabled=true # Enable the endpoint.
1101
-
endpoints.logfile.external-file= # External Logfile to be accessed.
endpoints.env.cache.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
1125
+
endpoints.env.enabled=true # Enable the env endpoint.
1126
+
endpoints.env.jmx.enabled=true # Expose the env endpoint as a JMX MBean.
1127
+
endpoints.env.keys-to-sanitize=password,secret,key,token,.*credentials.*,vcap_services # Keys that should be sanitized. Keys can be simple strings that the property ends with or regex expressions.
1128
+
endpoints.env.web.enabled=true # Expose the env endpoint as a Web endpoint.
endpoints.flyway.cache.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
1132
+
endpoints.flyway.enabled=true # Enable the flyway endpoint.
1133
+
endpoints.flyway.jmx.enabled=true # Expose the flyway endpoint as a JMX MBean.
1134
+
endpoints.flyway.web.enabled=true # Expose the flyway endpoint as a Web endpoint.
1135
+
1136
+
# HEALTH ENDPOINT ({sc-spring-boot-actuator}/endpoint/HealthEndpoint.{sc-ext}[HealthEndpoint])
1137
+
endpoints.health.cache.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
1138
+
endpoints.health.enabled=true # Enable the health endpoint.
1139
+
endpoints.health.jmx.enabled=true # Expose the health endpoint as a JMX MBean.
1140
+
endpoints.health.mapping= # Mapping of health statuses to HttpStatus codes. By default, registered health statuses map to sensible defaults (i.e. UP maps to 200).
1141
+
endpoints.health.web.enabled=true # Expose the health endpoint as a Web endpoint.
endpoints.logfile.cache.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
1162
+
endpoints.logfile.enabled=true # Enable the logfile endpoint.
1163
+
endpoints.logfile.external-file= # External Logfile to be accessed. Can be used if the logfile is written by output redirect and not by the logging system itself.
1164
+
endpoints.logfile.web.enabled=true # Expose the logfile endpoint as a Web endpoint.
0 commit comments