Expand description
A library for reading systemd journal files in a streaming fashion.
This crate provides a JournalReader that can be used to parse
journal files and iterate over their entries. It is designed to be
memory-efficient and safe, processing one entry at a time without
loading the entire file into memory or using unsafe code. This version
is designed for Read-only streams (like network sockets) and does not
require the Seek trait.
Structsยง
- Entry
- A journal entry.
- Journal
Reader - Reads systemd journal files in a streaming manner from a Read-only source.