Get desktop application:
View/edit binary Protocol Buffers messages
LogMetadataService provides metadata for the log files in a directory.
List the log files and their metadata.
Subscribe for changes on a directory and its files (non-recursive).
Represents an update of the metadata of the log file.
Possible values: ADDED -> A new file was created. MODIFIED -> File has been modified. DELETED -> File was deleted.
LogRecordsService is responsible for returing returning existing and newlog lines from the log files.
Streams log lines from new to old ones.
Streams log lines from old to new ones. It is possible to tail the files and stream new entries as they happen.
Controls how the stream is going to follow new entries in the logs.
Used in:
No follow, return immediately.
Follow from the start_time argument if present, otherwise from the beginning of the file.
Follow from the end of the file.
Metadata for a log file.
Used in: ,
Container id.
Used in:
Size of the file in bytes.
K8s metadata information.
Used in:
A log line
Used as response type in: LogRecordsService.StreamBackward, LogRecordsService.StreamForward
A request to initiate a log stream.
Used as request type in: LogRecordsService.StreamBackward, LogRecordsService.StreamForward
K8s namepsace.
K8s pod name.
Return only the logs that happened after this timestamp.
Return only the logs that happened before this timestamp.
Filter the logs according to this grep.
Keep the stream connection open to keep receiving new log lines.