protolabs42

memory/stats

Get memory statistics per namespace: count, quota, query rate.

POST
/rpc#memory.stats

Get memory statistics per namespace: count, quota, query rate.

Authorization

bearerAuth
AuthorizationBearer <token>

API key obtained via invite redemption or SIWE login

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://chorus.runclaw.run/rpc#memory.stats" \  -H "Content-Type: application/json" \  -d '{}'
{
  "namespaces": {
    "property1": {
      "count": 0,
      "quota": 0,
      "query_rate_per_min": 0
    },
    "property2": {
      "count": 0,
      "quota": 0,
      "query_rate_per_min": 0
    }
  }
}