Fluent Bit · Capability

Fluent Bit Monitoring HTTP API — Health

Fluent Bit Monitoring HTTP API — Health. 2 operations. Lead operation: Health check (v1). Self-contained Naftiko capability covering one Fluent Bit business surface.

Run with Naftiko Fluent BitHealth

What You Can Do

GET
Get — Health check (v1)
/v1/api/v1/health
GET
Get — Health status (v2, JSON)
/v1/api/v2/health

MCP Tools

health-check-v1

Health check (v1)

read-only idempotent
health-status-v2-json

Health status (v2, JSON)

read-only idempotent

Capability Spec

monitoring-health.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Fluent Bit Monitoring HTTP API — Health
  description: 'Fluent Bit Monitoring HTTP API — Health. 2 operations. Lead operation: Health check (v1). Self-contained Naftiko
    capability covering one Fluent Bit business surface.'
  tags:
  - Fluent Bit
  - Health
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FLUENT_BIT_API_KEY: FLUENT_BIT_API_KEY
capability:
  consumes:
  - type: http
    namespace: monitoring-health
    baseUri: http://127.0.0.1:2020
    description: Fluent Bit Monitoring HTTP API — Health business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-health
      path: /api/v1/health
      operations:
      - name: get
        method: GET
        description: Health check (v1)
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-v2-health
      path: /api/v2/health
      operations:
      - name: get
        method: GET
        description: Health status (v2, JSON)
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: monitoring-health-rest
    port: 8080
    description: REST adapter for Fluent Bit Monitoring HTTP API — Health. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/v1/health
      name: api-v1-health
      description: REST surface for api-v1-health.
      operations:
      - method: GET
        name: get
        description: Health check (v1)
        call: monitoring-health.get
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v2/health
      name: api-v2-health
      description: REST surface for api-v2-health.
      operations:
      - method: GET
        name: get
        description: Health status (v2, JSON)
        call: monitoring-health.get
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: monitoring-health-mcp
    port: 9090
    transport: http
    description: MCP adapter for Fluent Bit Monitoring HTTP API — Health. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: health-check-v1
      description: Health check (v1)
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: monitoring-health.get
      outputParameters:
      - type: object
        mapping: $.
    - name: health-status-v2-json
      description: Health status (v2, JSON)
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: monitoring-health.get
      outputParameters:
      - type: object
        mapping: $.