Last active
October 17, 2019 13:02
-
-
Save j-tim/ca9b9766825b550d2ee5d6ebf6e478b8 to your computer and use it in GitHub Desktop.
Pre Spring Boot 2.2 Health Actuator Response (Actuator V2)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"status": "UP", | |
"details": { | |
"db": { | |
"status": "UP", | |
"details": { | |
"database": "HSQL Database Engine", | |
"result": 1, | |
"validationQuery": "SELECT COUNT(*) FROM INFORMATION_SCHEMA.SYSTEM_USERS" | |
} | |
}, | |
"diskSpace": { | |
"status": "UP", | |
"details": { | |
"total": 250685575168, | |
"free": 32597131264, | |
"threshold": 10485760 | |
} | |
}, | |
"ping": { | |
"status": "UP" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment