Files
bifrost/docs/openapi/paths/management/health.yaml
Beyhan Oğur 880f412e2c first commit
2026-04-26 21:52:23 +03:00

23 lines
651 B
YAML

health:
get:
operationId: getHealth
summary: Health check
description: |
Returns the health status of the Bifrost server. Checks connectivity to config store,
log store, and vector store if configured.
tags:
- Health
responses:
'200':
description: Server is healthy
content:
application/json:
schema:
$ref: '../../schemas/management/health.yaml#/HealthResponse'
'503':
description: Service unavailable
content:
application/json:
schema:
$ref: '../../schemas/inference/common.yaml#/BifrostError'