curl --request GET \
--url http://localhost:3000/api/messaging/sessions/health
{
"status": "healthy",
"activeSessions": 123,
"timestamp": "2023-11-07T05:31:56Z"
}
Check the health status of the sessions service
curl --request GET \
--url http://localhost:3000/api/messaging/sessions/health
{
"status": "healthy",
"activeSessions": 123,
"timestamp": "2023-11-07T05:31:56Z"
}
Sessions API is healthy
The response is of type object
.
Was this page helpful?