LogStreamType is the type of the stream in CRI container log.
const (
// Stdout is the stream type for stdout. Stdout LogStreamType = "stdout"
// Stderr is the stream type for stderr. Stderr LogStreamType = "stderr"
)
LogTag is the tag of a log line in CRI container log.
Currently defined log tags:
* First tag: Partial/Full - P/F.
The field in the container log format can be extended to include multiple
tags by using a delimiter, but changes should be rare.
const (
// LogTagPartial means the line is part of multiple lines. LogTagPartial LogTag = "P"
// LogTagFull means the line is a single full line or the end of multiple lines. LogTagFull LogTag = "F"
// LogTagDelimiter is the delimiter for different log tags. LogTagDelimiter = ":"
)