-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Microprofile /health endpoint does not distinguish by application in the health endpoint url #316
Comments
Unfortunately, this is explicitly not defined as we need an overall strategy for the MicroProfile as whole (as you pointed, same scenario for /health, /metrics, /openapi). So the specification explicitly says:
More information can be found in eclipse/microprofile#168. |
Exactly, it should be provided for all endpoints, not only /health. I am using only health here as an example. Yes, it is about Microprofile in general, not just /health endpoint as Spring did it by providing actuator endpoint by-the-application. So the specification explicitly says:
|
In Spring, the
/health
end point is separated by application. So if I have 10 applications on same server, I can access/health
,/metrics
etc endpoints for each application separately like:This is great since I know exactly for which application I cam checking health status for.
However, in Microprofile, there seem to be no such distinction and there is only a generic
/health
endpoint like:http://myserver/health
, and that reports:
{"checks":[],"status":"UP"}
So, it does not tell me for which application is status up or down.
The text was updated successfully, but these errors were encountered: