Get job logs

GET /job/logs

Task output for the given job and task will be fetched and returned for STDOUT / STDERR.

Query parameters

  • id string Required

    Job id

  • task string Required

    Task name

Responses

GET /job/logs
curl \
 -X GET http://localhost:8080/job/logs?id=52a5cb79-7556-4c52-8e6f-dd6aaf1bc4c8&task=my_task
Response examples (400)
{
  "error": "string"
}
Response examples (400)
{
  "error": "string"
}
Response examples (default)
{
  "stderr": "string",
  "stdout": "string"
}
Response examples (default)
{
  "stderr": "string",
  "stdout": "string"
}