curl -X GET https://scrape.st/health
{
"status": "healthy",
"fleet": {
"active": 3,
"total": 3,
"shards": [
{ "id": "shard-1", "status": "active" },
{ "id": "shard-2", "status": "active" },
{ "id": "shard-3", "status": "active" }
]
},
"timestamp": "2024-04-02T15:30:00.000Z"
}
Health & Metrics
Health Endpoints
API reference for health and metrics endpoints
GET
/
health
curl -X GET https://scrape.st/health
{
"status": "healthy",
"fleet": {
"active": 3,
"total": 3,
"shards": [
{ "id": "shard-1", "status": "active" },
{ "id": "shard-2", "status": "active" },
{ "id": "shard-3", "status": "active" }
]
},
"timestamp": "2024-04-02T15:30:00.000Z"
}
Get overall system health status.
Note: Returns HTTP 200 when healthy, 207 when degraded, 503 when critical.
Response
string
Overall status:
healthy, degraded, or criticalobject
Information about web-push shards
string
ISO timestamp of the response
curl -X GET https://scrape.st/health
{
"status": "healthy",
"fleet": {
"active": 3,
"total": 3,
"shards": [
{ "id": "shard-1", "status": "active" },
{ "id": "shard-2", "status": "active" },
{ "id": "shard-3", "status": "active" }
]
},
"timestamp": "2024-04-02T15:30:00.000Z"
}