Status

Status related operations

Fetches the status of the Replication Server.

get
Authorizations
Responses
200

Status was fetched successfully

application/json
get
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
Authorizations
Responses
200

Health check was successful

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

Was this helpful?