Search code examples
javaspring-cloudhystrix

Is there any idea to disable hystrix indicator?


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?


Solution

  • 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.