mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-05-08 02:49:17 -05:00
f256b258d8
* 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
53 lines
807 B
YAML
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"
|