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:
http://myServer/app1/acutator/health
http://myServer/app2/acutator/health
http://myServer/app3/acutator/health
...
http://myServer/app10/acutator/health
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.
In Spring, the
/healthend point is separated by application. So if I have 10 applications on same server, I can access/health,/metricsetc 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
/healthendpoint like:http://myserver/health, and that reports:
{"checks":[],"status":"UP"}So, it does not tell me for which application is status up or down.