Check by ID.
Core Ingest check model.
GET /v1/ingest_checks/{checkID} HTTP/1.1 Host: cloud-api.calyptia.com Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
OK
{ "id": "123e4567-e89b-12d3-a456-426614174000", "config": "text", "status": "new", "collectLogs": true, "logs": "Ynl0ZXM=", "retries": 1, "createdAt": "2025-04-24T08:31:09.638Z", "updatedAt": "2025-04-24T08:31:09.638Z" }
Delete Ingest check by its ID.
DELETE /v1/ingest_checks/{checkID} HTTP/1.1 Host: cloud-api.calyptia.com Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
No Content
No content
Update a Ingest check by its ID.
Update a core instance Ingest check request body.
logs coming from the fluent-bit pod, maximum size is 10MiB.
null
The status of a check.
new
failed
running
ok
PATCH /v1/ingest_checks/{checkID} HTTP/1.1 Host: cloud-api.calyptia.com Authorization: Bearer YOUR_SECRET_TOKEN Content-Type: application/json Accept: */* Content-Length: 30 { "logs": "text", "status": "new" }