curl --request GET \
--url http://localhost:3000/api/server/servers
{
"servers": [
{
"id": "<string>",
"name": "<string>",
"status": "<string>",
"agents": [
"<string>"
]
}
]
}
Get debug information about active servers (debug endpoint)
curl --request GET \
--url http://localhost:3000/api/server/servers
{
"servers": [
{
"id": "<string>",
"name": "<string>",
"status": "<string>",
"agents": [
"<string>"
]
}
]
}
Server debug information
The response is of type object
.
Was this page helpful?