Status

Status related operations

Fetches the status of the Replication Server.

get
/status
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

Status was fetched successfully

application/json
get
/status
GET /status HTTP/1.1
Host: 127.0.0.1:64001
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "connected_clients": 1,
  "memory_limit": 1,
  "memory_used": 1
}

Health check endpoint for the Replication Server.

get
/health
Authorizations
AuthorizationstringRequired
Responses
200

Health check was successful

text/html
ResponsestringExample: OK
get
/health
GET /health HTTP/1.1
Host: 127.0.0.1:64001
Authorization: Basic username:password
Accept: */*
OK

Last updated

Was this helpful?