Skip to main content
GET
/
executors
/
{executor_id}
/
logs
Get Executor Logs
curl --request GET \
  --url http://localhost:8000/executors/{executor_id}/logs \
  --header 'Authorization: Basic <encoded-value>'
{
  "executor_id": "<string>",
  "logs": [
    {
      "timestamp": "<string>",
      "level": "<string>",
      "message": "<string>",
      "exc_info": "<string>"
    }
  ],
  "total_count": 123
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

executor_id
string
required

Query Parameters

level
string | null
limit
integer
default:50

Response

Successful Response

Response for executor log entries.

executor_id
string
required

Executor identifier

logs
ExecutorLogEntry · object[]
required

Log entries

total_count
integer
required

Total number of log entries (before limit)