Spring Batch 5.1 · Example Payload

Spring Batch 51 Get Health Example

Batch ProcessingData ProcessingEnterpriseETLJavaJob SchedulingSpring Framework

Spring Batch 51 Get Health Example is an example object payload from Spring Batch 5.1, 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/actuator/health",
    "headers": {
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "status": "UP",
      "components": {
        "db": {
          "status": "UP",
          "details": {
            "database": "H2",
            "validationQuery": "isValid()"
          }
        },
        "diskSpace": {
          "status": "UP",
          "details": {
            "total": 499963174912,
            "free": 309803892736,
            "threshold": 10485760,
            "path": "/app/.",
            "exists": true
          }
        },
        "ping": {
          "status": "UP"
        }
      }
    }
  }
}