curl --request GET \
--url http://localhost:3000/api/server/health
{
"status": "OK",
"version": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"dependencies": {
"agents": "healthy"
}
}
Detailed health check for the system
curl --request GET \
--url http://localhost:3000/api/server/health
{
"status": "OK",
"version": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"dependencies": {
"agents": "healthy"
}
}
System is healthy
The response is of type object
.
Was this page helpful?