curl --request POST \
--url http://localhost:3000/api/server/logs \
--header 'Content-Type: application/json' \
--data '{
"since": 123,
"level": "info",
"agentName": "<string>",
"agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"limit": 100
}'
{
"logs": [
{
"level": 123,
"time": 123,
"msg": "<string>",
"agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agentName": "<string>"
}
],
"count": 123,
"total": 123,
"level": "<string>",
"levels": [
"<string>"
]
}
Retrieve system logs with optional filtering using POST method
curl --request POST \
--url http://localhost:3000/api/server/logs \
--header 'Content-Type: application/json' \
--data '{
"since": 123,
"level": "info",
"agentName": "<string>",
"agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"limit": 100
}'
{
"logs": [
{
"level": 123,
"time": 123,
"msg": "<string>",
"agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"agentName": "<string>"
}
],
"count": 123,
"total": 123,
"level": "<string>",
"levels": [
"<string>"
]
}
System logs
The response is of type object
.
Was this page helpful?