Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save j-tim/9e9c1a2f1daa37f17f4773b2af8b1964 to your computer and use it in GitHub Desktop.
Save j-tim/9e9c1a2f1daa37f17f4773b2af8b1964 to your computer and use it in GitHub Desktop.
Spring Boot 2.2 Health Actuator Response (Actuator V3)
{
"status": "UP",
"components": {
"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": 32605003776,
"threshold": 10485760
}
},
"ping": {
"status": "UP"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment