OAPI: add operation to fetch the tail end of a task log
This commit is contained in:
parent
23a5e9df4c
commit
fc74195704
@ -427,6 +427,32 @@ paths:
|
|||||||
schema:
|
schema:
|
||||||
$ref: "#/components/schemas/Error"
|
$ref: "#/components/schemas/Error"
|
||||||
|
|
||||||
|
/api/tasks/{task_id}/logtail:
|
||||||
|
summary: Fetch the task's last few log lines.
|
||||||
|
get:
|
||||||
|
operationId: fetchTaskLogTail
|
||||||
|
summary: Fetch the last few lines of the task's log.
|
||||||
|
tags: [jobs]
|
||||||
|
parameters:
|
||||||
|
- name: task_id
|
||||||
|
in: path
|
||||||
|
required: true
|
||||||
|
schema: { type: string, format: uuid }
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: The task log.
|
||||||
|
content:
|
||||||
|
text/plain:
|
||||||
|
schema:
|
||||||
|
type: array
|
||||||
|
items: { type: string }
|
||||||
|
default:
|
||||||
|
description: Unexpected error.
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: "#/components/schemas/Error"
|
||||||
|
|
||||||
/api/tasks/{task_id}/setstatus:
|
/api/tasks/{task_id}/setstatus:
|
||||||
summary: >
|
summary: >
|
||||||
Request a status change for the given task. This may have effect on the
|
Request a status change for the given task. This may have effect on the
|
||||||
|
Loading…
x
Reference in New Issue
Block a user