check /health endpoint, i want to disable hystrix from below response.
{
"status": "UP",
"details": {
"hystrix": {
"status": "UP"
}
}
}
checked HystrixHealthIndicator, there is no way to disable it. Any solution here?
related configuration is well documented at production-ready-endpoints.
To disable all default indicators
management.health.defaults.enabled=false
To disable hystrix only
management.health.hystrix.enabled=false
For further investigation, please check ConditionalOnEnabledHealthIndicator.