Files
hatchet/api-contracts/openapi/components/schemas/logs.yaml
T
abelanger5 f256b258d8 feat: logging from step run executions (#217)
* fix: job cancellations with shared ctx

* fix: found the bug

* fix: all job runs were getting cancelled

* feat: support logging from executions

* fix: place logging in background

* add back split screen
2024-03-01 17:55:31 -05:00

53 lines
807 B
YAML

LogLine:
properties:
createdAt:
type: string
format: date-time
description: The creation date of the log line.
message:
type: string
description: The log message.
metadata:
type: object
description: The log metadata.
required:
- createdAt
- message
- metadata
LogLineLevel:
type: string
enum:
- DEBUG
- INFO
- WARN
- ERROR
LogLineList:
properties:
pagination:
$ref: "./metadata.yaml#/PaginationResponse"
rows:
items:
$ref: "#/LogLine"
type: array
LogLineOrderByField:
type: string
enum:
- createdAt
LogLineOrderByDirection:
type: string
enum:
- asc
- desc
LogLineSearch:
type: string
LogLineLevelField:
type: array
items:
$ref: "#/LogLineLevel"