Spring Boot Admin Console · Example Payload

Spring Boot Admin Console Get Instance Health Example

ActuatorAdministrationJavaMicroservicesMonitoringSpring Boot

Spring Boot Admin Console Get Instance Health Example is an example object payload from Spring Boot Admin Console, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "http://localhost:8080/instances/a1b2c3d4e5f6/actuator/health",
    "headers": {
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "status": "UP",
      "components": {
        "db": {
          "status": "UP",
          "details": {
            "database": "PostgreSQL",
            "validationQuery": "isValid()"
          }
        },
        "diskSpace": {
          "status": "UP",
          "details": {
            "total": 107374182400,
            "free": 52428800000,
            "threshold": 10485760
          }
        },
        "redis": {
          "status": "UP",
          "details": {
            "version": "7.0.12"
          }
        }
      }
    }
  }
}