Module: Systemd::Journal::Flags

Defined in:
lib/systemd/journal/flags.rb

Overview

contains a set of constants which maybe bitwise OR-ed together and passed to the Journal constructor.

Examples:

Systemd::Journal.new(flags: Systemd::Journal::Flags::LOCAL_ONLY)

Constant Summary collapse

LOCAL_ONLY =

Only open journal files generated on the local machine.

1
RUNTIME_ONLY =

Only open non-persistent journal files.

2
SYSTEM_ONLY =

Only open kernel and system service journal files.

4