Data Classes¶
Predefined Data Classes¶
- class zlogging._data.ASCIIInfo(path, open, close, data, exit_with_error)[source]¶
Bases:
InfoParsed log info for ASCII logs.
The ASCII log will be stored as in this
dataclass, as introduced in PEP 557.- Parameters
path (PathLike[str]) – The value is specified in the ASCII log file under
# pathdirective.open (DateTimeType) – The value is specified in the ASCII log file under
# opendirective.close (DateTimeType) – The value is specified in the ASCII log file under
# closedirective.data (list[Model]) – The log records parsed as a
listofModelper line.exit_with_error (bool) – When exit with error, the ASCII log file doesn’t has a
# closedirective.
- open: DateTimeType¶
Log open time. The value is specified in the ASCII log file under
# opendirective.
- close: DateTimeType¶
Log close time. The value is specified in the ASCII log file under
# closedirective.