You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The /uPortal/health-check only provides a basic response that does not exercise much of the system.
If would be more useful if the check would also perform a database call to confirm that key service is working. This can be triggered by an optional URL parameter.
Other information may also be included, such as Java version, etc. N.B. do not supply too much information that may be beneficial to hackers.
The text was updated successfully, but these errors were encountered:
With dropwizard, that I already used we define a HealthCheckRegistry on which you add already available module that will watch on your database, LDAP, cache, JVM, etc... also this can provide metrics and it can provide metrics to your metric tool ;)
So to use the new healthcheck with database verification, we would switch the url to /uPortal/health-check?detail=DB ? And then if the database is down it'll return a 500 error?
The
/uPortal/health-check
only provides a basic response that does not exercise much of the system.If would be more useful if the
check
would also perform a database call to confirm that key service is working. This can be triggered by an optional URL parameter.Other information may also be included, such as Java version, etc. N.B. do not supply too much information that may be beneficial to hackers.
The text was updated successfully, but these errors were encountered: