Remove management.health.status.order from docs
See gh-18170
This commit is contained in:
parent
14a676052f
commit
7a49651e09
|
|
@ -23,6 +23,7 @@ import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
import org.springframework.boot.actuate.health.HealthEndpoint;
|
import org.springframework.boot.actuate.health.HealthEndpoint;
|
||||||
|
import org.springframework.boot.context.properties.NestedConfigurationProperty;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Properties used to configure the health endpoint and endpoint groups.
|
* Properties used to configure the health endpoint and endpoint groups.
|
||||||
|
|
@ -33,6 +34,7 @@ import org.springframework.boot.actuate.health.HealthEndpoint;
|
||||||
*/
|
*/
|
||||||
public abstract class HealthProperties {
|
public abstract class HealthProperties {
|
||||||
|
|
||||||
|
@NestedConfigurationProperty
|
||||||
private final Status status = new Status();
|
private final Status status = new Status();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,15 @@
|
||||||
"name": "management.endpoint.health.show-details",
|
"name": "management.endpoint.health.show-details",
|
||||||
"defaultValue": "never"
|
"defaultValue": "never"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "management.endpoint.health.status.order",
|
||||||
|
"defaultValue": [
|
||||||
|
"DOWN",
|
||||||
|
"OUT_OF_SERVICE",
|
||||||
|
"UP",
|
||||||
|
"UNKNOWN"
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "management.endpoints.enabled-by-default",
|
"name": "management.endpoints.enabled-by-default",
|
||||||
"type": "java.lang.Boolean",
|
"type": "java.lang.Boolean",
|
||||||
|
|
@ -162,7 +171,10 @@
|
||||||
"OUT_OF_SERVICE",
|
"OUT_OF_SERVICE",
|
||||||
"UP",
|
"UP",
|
||||||
"UNKNOWN"
|
"UNKNOWN"
|
||||||
]
|
],
|
||||||
|
"deprecation": {
|
||||||
|
"replacement": "management.endpoint.health.status.order"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "management.health.mail.enabled",
|
"name": "management.health.mail.enabled",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue