Skip to main content
GET
/
api
/
test
/
health
Check status of the middleware application
curl --request GET \
  --url https://pria.praxislxp.com/api/test/health
{
  "status": "ok",
  "uptime": 112.368138,
  "timestamp": 1750534150795,
  "summary": "Event loop lag: 12ms | RSS: 280MB | heap: 158MB/170MB | mongo: connected",
  "eventLoopLag": {
    "meanMs": 1.2,
    "p50Ms": 0.4,
    "p95Ms": 6.1,
    "p99Ms": 15,
    "maxMs": 42
  },
  "mongo": {
    "state": 1,
    "label": "connected"
  },
  "memory": {
    "rss": 128008192,
    "heapTotal": 72105984,
    "heapUsed": 67442352,
    "external": 23693540,
    "arrayBuffers": 19882176,
    "limitBytes": 17179869184,
    "rssRatio": 0.0075
  },
  "dependencies": {
    "database": 1
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.praxis-ai.com/llms.txt

Use this file to discover all available pages before exploring further.

Response

200 - application/json

Service is healthy and operational

status
string

Overall health status

Example:

"ok"

uptime
number

Server uptime in seconds

timestamp
number

Current timestamp in milliseconds

summary
string

Human-readable one-line digest matching the heartbeat log format

Example:

"Event loop lag: 1.9s | RSS: 1.7GB | heap: 506MB/1.1GB | mongo: connected"

eventLoopLag
object

Event loop lag percentiles in ms over the current sampling window. Null until the monitor's histogram has data.

mongo
object
memory
object
dependencies
object