Spring Batch 5.1 · Capability

Spring Batch 5.1 Actuator API — Health

Spring Batch 5.1 Actuator API — Health. 2 operations. Lead operation: Get Application Health. Self-contained Naftiko capability covering one Spring Batch 5 1 business surface.

Run with Naftiko Spring Batch 5 1Health

What You Can Do

GET
Gethealth — Get Application Health
/v1/health
GET
Getbatchhealth — Get Batch Health
/v1/health/batch

MCP Tools

get-application-health

Get Application Health

read-only idempotent
get-batch-health

Get Batch Health

read-only idempotent

Capability Spec

spring-batch-51-health.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Spring Batch 5.1 Actuator API — Health
  description: 'Spring Batch 5.1 Actuator API — Health. 2 operations. Lead operation: Get Application Health. Self-contained
    Naftiko capability covering one Spring Batch 5 1 business surface.'
  tags:
  - Spring Batch 5 1
  - Health
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SPRING_BATCH_5_1_API_KEY: SPRING_BATCH_5_1_API_KEY
capability:
  consumes:
  - type: http
    namespace: spring-batch-51-health
    baseUri: http://localhost:8080/actuator
    description: Spring Batch 5.1 Actuator API — Health business capability. Self-contained, no shared references.
    resources:
    - name: health
      path: /health
      operations:
      - name: gethealth
        method: GET
        description: Get Application Health
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: health-batch
      path: /health/batch
      operations:
      - name: getbatchhealth
        method: GET
        description: Get Batch Health
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: spring-batch-51-health-rest
    port: 8080
    description: REST adapter for Spring Batch 5.1 Actuator API — Health. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/health
      name: health
      description: REST surface for health.
      operations:
      - method: GET
        name: gethealth
        description: Get Application Health
        call: spring-batch-51-health.gethealth
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/health/batch
      name: health-batch
      description: REST surface for health-batch.
      operations:
      - method: GET
        name: getbatchhealth
        description: Get Batch Health
        call: spring-batch-51-health.getbatchhealth
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: spring-batch-51-health-mcp
    port: 9090
    transport: http
    description: MCP adapter for Spring Batch 5.1 Actuator API — Health. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-application-health
      description: Get Application Health
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: spring-batch-51-health.gethealth
      outputParameters:
      - type: object
        mapping: $.
    - name: get-batch-health
      description: Get Batch Health
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: spring-batch-51-health.getbatchhealth
      outputParameters:
      - type: object
        mapping: $.