Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions api-docs/influxdb/v2/influxdb-oss-v2-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7892,6 +7892,15 @@ paths:
schema:
$ref: '#/components/schemas/Ready'
description: The instance is ready
'503':
content:
application/json:
schema:
$ref: '#/components/schemas/Ready'
description: |
The instance is still starting and isn't ready yet.
One or more readiness checks haven't passed.
The `checks` property of the response body contains only the failing checks.
default:
$ref: '#/components/responses/GeneralServerError'
description: Unexpected error
Expand Down Expand Up @@ -16885,13 +16894,21 @@ components:
type: object
Ready:
properties:
checks:
description: |
Readiness checks that haven't passed yet.
Present only in a `503` response and contains only the failing checks.
items:
$ref: '#/components/schemas/HealthCheck'
type: array
started:
example: '2019-03-13T10:09:33.891196-04:00'
format: date-time
type: string
status:
enum:
- ready
- starting
type: string
up:
example: 14m45.911966424s
Expand Down
Loading