java - How to customize management endpoint path in HashiCorp Consul -
if try customize management endpoint of spring boot consul application other path, example:
management.context-path=/manage
hashicorp consul server can not detect if microservice working fine. there inform consul server endpoint path should for?
if comment property "management.context-path", consul server works fine again, because goes root endpoint path.
i appreciate help.
right, after looking while on internet found out answer:
management: context-path: /manage spring: cloud: consul: discovery: healthcheckpath: /manage/health
Comments
Post a Comment