Experimental
Schema
OutputRetention
Type:
object
OutputRetention records minimum reconnect coverage independently of location.
output retention requires a duration or byte floor
minBytes
Type:
integer | string
min_bytes retains at least this many recent bytes per process when nonzero.
a byte retention floor must be zero or at least 64 KiB
All schema constraints and annotations
{
"description": "min_bytes retains at least this many recent bytes per process when nonzero.\na byte retention floor must be zero or at least 64 KiB",
"format": "int64",
"type": [
"integer",
"string"
]
}minDuration
Schema:
Duration
min_duration retains each process's output for at least this age when set.
All schema constraints and annotations
{
"$ref": "#/components/schemas/Duration",
"description": "min_duration retains each process's output for at least this age when set."
}All schema constraints and annotations
{
"description": "OutputRetention records minimum reconnect coverage independently of location.\noutput retention requires a duration or byte floor",
"properties": {
"minBytes": {
"description": "min_bytes retains at least this many recent bytes per process when nonzero.\na byte retention floor must be zero or at least 64 KiB",
"format": "int64",
"type": [
"integer",
"string"
]
},
"minDuration": {
"$ref": "#/components/schemas/Duration",
"description": "min_duration retains each process's output for at least this age when set."
}
},
"title": "OutputRetention",
"type": "object"
}