Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save j-tim/ca9b9766825b550d2ee5d6ebf6e478b8 to your computer and use it in GitHub Desktop.
Save j-tim/ca9b9766825b550d2ee5d6ebf6e478b8 to your computer and use it in GitHub Desktop.
Pre Spring Boot 2.2 Health Actuator Response (Actuator V2)
{
"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