Lines Matching full:journal
3 #include <systemd/sd-journal.h>
13 * Abstract class to read messages from the journal.
26 * @brief Get messages from the journal
37 * @brief Call journalctl --sync to write unwritten journal data to disk
43 * @class Journal
45 * Reads from the journal.
47 class Journal : public JournalBase class
50 Journal() = default;
51 ~Journal() = default;
52 Journal(const Journal&) = default;
53 Journal& operator=(const Journal&) = default;
54 Journal(Journal&&) = default;
55 Journal& operator=(Journal&&) = default;
58 * @brief Get messages from the journal
69 * @brief Call journalctl --sync to write unwritten journal data to disk
75 * @brief Gets a field from the current journal entry
77 * @param journal - pointer to current journal entry
82 std::string getFieldValue(sd_journal* journal,
86 * @brief Gets a readable timestamp from the journal entry
88 * @param journal - pointer to current journal entry
92 std::string getTimeStamp(sd_journal* journal) const;