Class: Systemd::Journal
- Inherits:
-
Object
- Object
- Systemd::Journal
- Includes:
- Enumerable, Filterable, Navigable, Waitable, Writable
- Defined in:
- lib/systemd/journal.rb,
lib/systemd/journal/flags.rb,
lib/systemd/journal/fields.rb,
lib/systemd/journal/native.rb,
lib/systemd/journal/version.rb,
lib/systemd/journal/waitable.rb,
lib/systemd/journal/writable.rb,
lib/systemd/journal/navigable.rb,
lib/systemd/journal/filterable.rb,
ext/shim/shim.c
Overview
Class to allow interacting with the systemd journal. To read from the journal, instantiate a new Journal; to write to the journal, use Journal.message or Journal.print.
Defined Under Namespace
Modules: Filterable, Flags, Native, Navigable, Shim, Waitable, Writable
Constant Summary collapse
- USER_FIELDS =
Fields directly passed by client programs and stored in the journal.
%w( MESSAGE MESSAGE_ID PRIORITY CODE_FILE CODE_LINE CODE_FUNC ERRNO SYSLOG_FACILITY SYSLOG_IDENTIFIER SYSLOG_PID )
- TRUSTED_FIELDS =
Fields generated by the journal and added to each event.
%w( _PID _UID _GID _COMM _EXE _CMDLINE _AUDIT_SESSION _AUDIT_LOGINUID _SYSTEMD_CGROUP _SYSTEMD_SESSION _SYSTEMD_UNIT _SYSTEMD_USER_UNIT _SYSTEMD_OWNER_UID _SELINUX_CONTEXT _SOURCE_REALTIME_TIMESTAMP _BOOT_ID _MACHINE_ID _HOSTNAME _TRANSPORT )
- KERNEL_FIELDS =
Fields used in messages originating from the kernel.
%w( _KERNEL_DEVICE _KERNEL_SUBSYSTEM _UDEV_SYSNAME _UDEV_DEVNODE _UDEV_DEVLINK )
- VERSION =
The version of the systemd-journal gem.
'2.1.0'.freeze
Constants included from Waitable
Constants included from Writable
Writable::LOG_ALERT, Writable::LOG_CRIT, Writable::LOG_DEBUG, Writable::LOG_EMERG, Writable::LOG_ERR, Writable::LOG_INFO, Writable::LOG_NOTICE, Writable::LOG_WARNING
Instance Attribute Summary collapse
-
#auto_reopen ⇒ Object
readonly
Returns the iterations to auto reopen.
Class Method Summary collapse
Instance Method Summary collapse
-
#close ⇒ Object
Explicitly close the underlying Journal file.
- #closed? ⇒ Boolean
- #current_catalog ⇒ Object
-
#current_entry ⇒ Hash
Read the contents of all fields from the current journal entry.
-
#data_threshold ⇒ Integer
Get the maximum length of a data field that will be returned.
-
#data_threshold=(threshold) ⇒ Object
Set the maximum length of a data field that will be returned.
-
#disk_usage ⇒ Integer
Get the number of bytes the Journal is currently using on disk.
-
#each ⇒ Object
Iterate over each entry in the journal, respecting the applied conjunctions/disjunctions.
-
#initialize(opts = {}) ⇒ Journal
constructor
Returns a new instance of a Journal, opened with the provided options.
- #inspect ⇒ Object
-
#query_unique(field) ⇒ Array
Get the list of unique values stored in the journal for the given field.
-
#read_field(field) ⇒ String
Read the contents of the provided field from the current journal entry.
Methods included from Waitable
#wait, #wait_select_reliable?, #watch
Methods included from Filterable
#add_conjunction, #add_disjunction, #add_filter, #add_filters, #clear_filters, #filter
Methods included from Navigable
#cursor, #cursor?, #move, #move_next, #move_next_skip, #move_previous, #move_previous_skip, #seek
Methods included from Writable
Constructor Details
#initialize(opts = {}) ⇒ Journal
Returns a new instance of a Journal, opened with the provided options.
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/systemd/journal.rb', line 51 def initialize(opts = {}) @reopen_options = opts.dup # retain the options for auto reopen open_type, flags = (opts) ptr = FFI::MemoryPointer.new(:pointer, 1) @auto_reopen = (opts.key?(:auto_reopen) ? opts.delete(:auto_reopen) : false) if @auto_reopen @auto_reopen = @auto_reopen.is_a?(Integer) ? @auto_reopen : ITERATIONS_TO_AUTO_REOPEN end @finalize = (opts.key?(:finalize) ? opts.delete(:finalize) : true) rc = open_journal(open_type, ptr, opts, flags) raise JournalError, rc if rc < 0 @ptr = ptr.read_pointer file_descriptor ObjectSpace.define_finalizer(self, self.class.finalize(@ptr)) if @finalize end |
Instance Attribute Details
#auto_reopen ⇒ Object (readonly)
Returns the iterations to auto reopen
30 31 32 |
# File 'lib/systemd/journal.rb', line 30 def auto_reopen @auto_reopen end |
Class Method Details
.catalog_for(message_id) ⇒ Object
146 147 148 149 150 151 152 153 154 155 156 |
# File 'lib/systemd/journal.rb', line 146 def self.catalog_for() out_ptr = FFI::MemoryPointer.new(:pointer, 1) rc = Native.( Systemd::Id128::Native::Id128.from_s(), out_ptr ) raise JournalError, rc if rc < 0 read_and_free_outstr(out_ptr.read_pointer) end |
.open(opts = {}) ⇒ Object
69 70 71 72 73 74 |
# File 'lib/systemd/journal.rb', line 69 def self.open(opts = {}) j = new(opts.merge(finalize: false)) yield j ensure j.close if j end |
Instance Method Details
#close ⇒ Object
Explicitly close the underlying Journal file. Once this is done, any operations on the instance will fail and raise an exception.
215 216 217 218 219 220 221 222 |
# File 'lib/systemd/journal.rb', line 215 def close return if @ptr.nil? ObjectSpace.undefine_finalizer(self) if @finalize Native.sd_journal_close(@ptr) @ptr = nil end |
#closed? ⇒ Boolean
224 225 226 |
# File 'lib/systemd/journal.rb', line 224 def closed? @ptr.nil? end |
#current_catalog ⇒ Object
137 138 139 140 141 142 143 144 |
# File 'lib/systemd/journal.rb', line 137 def current_catalog out_ptr = FFI::MemoryPointer.new(:pointer, 1) rc = Native.sd_journal_get_catalog(@ptr, out_ptr) raise JournalError, rc if rc < 0 Journal.read_and_free_outstr(out_ptr.read_pointer) end |
#current_entry ⇒ Hash
Read the contents of all fields from the current journal entry. If given a block, it will yield each field in the form of ‘(fieldname, value)`.
Systemd::Journal::Navigable#move_next or Systemd::Journal::Navigable#move_previous must be called at least once after initialization or seeking prior to calling #current_entry
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
# File 'lib/systemd/journal.rb', line 120 def current_entry Native.sd_journal_restart_data(@ptr) results = {} while (kvpair = enumerate_helper(:sd_journal_enumerate_data)) key, value = kvpair results[key] = value yield(key, value) if block_given? end JournalEntry.new( results, realtime_ts: read_realtime, monotonic_ts: read_monotonic ) end |
#data_threshold ⇒ Integer
Get the maximum length of a data field that will be returned. Fields longer than this will be truncated. Default is 64K.
195 196 197 198 199 200 201 202 |
# File 'lib/systemd/journal.rb', line 195 def data_threshold size_ptr = FFI::MemoryPointer.new(:size_t, 1) if (rc = Native.sd_journal_get_data_threshold(@ptr, size_ptr)) < 0 raise JournalError, rc end size_ptr.read_size_t end |
#data_threshold=(threshold) ⇒ Object
Set the maximum length of a data field that will be returned. Fields longer than this will be truncated.
206 207 208 209 210 |
# File 'lib/systemd/journal.rb', line 206 def data_threshold=(threshold) if (rc = Native.sd_journal_set_data_threshold(@ptr, threshold)) < 0 raise JournalError, rc end end |
#disk_usage ⇒ Integer
Get the number of bytes the Journal is currently using on disk. If Systemd::Journal::Flags::LOCAL_ONLY was passed when opening the journal, this value will only reflect the size of journal files of the local host, otherwise of all hosts.
184 185 186 187 188 189 190 |
# File 'lib/systemd/journal.rb', line 184 def disk_usage size_ptr = FFI::MemoryPointer.new(:uint64) rc = Native.sd_journal_get_usage(@ptr, size_ptr) raise JournalError, rc if rc < 0 size_ptr.read_uint64 end |
#each ⇒ Object
Iterate over each entry in the journal, respecting the applied conjunctions/disjunctions. If a block is given, it is called with each entry until no more entries remain. Otherwise, returns an enumerator which can be chained.
80 81 82 83 84 85 |
# File 'lib/systemd/journal.rb', line 80 def each return to_enum(:each) unless block_given? seek(:head) yield current_entry while move_next end |
#inspect ⇒ Object
229 230 231 232 233 234 235 236 237 |
# File 'lib/systemd/journal.rb', line 229 def inspect format( '#<%s:0x%016x target: "%s", flags: 0x%08x>', self.class.name, object_id, @open_target, @open_flags ) end |
#query_unique(field) ⇒ Array
Get the list of unique values stored in the journal for the given field. If passed a block, each possible value will be yielded.
164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
# File 'lib/systemd/journal.rb', line 164 def query_unique(field) results = [] Native.sd_journal_restart_unique(@ptr) rc = Native.sd_journal_query_unique(@ptr, field.to_s.upcase) raise JournalError, rc if rc < 0 while (kvpair = enumerate_helper(:sd_journal_enumerate_unique)) results << kvpair.last end results end |
#read_field(field) ⇒ String
Read the contents of the provided field from the current journal entry.
{#move_next} or {#move_previous} must be called at least once after
initialization or seeking prior to attempting to read data.
96 97 98 99 100 101 102 103 104 105 106 |
# File 'lib/systemd/journal.rb', line 96 def read_field(field) len_ptr = FFI::MemoryPointer.new(:size_t, 1) out_ptr = FFI::MemoryPointer.new(:pointer, 1) field = field.to_s.upcase rc = Native.sd_journal_get_data(@ptr, field, out_ptr, len_ptr) raise JournalError, rc if rc < 0 len = len_ptr.read_size_t string_from_out_ptr(out_ptr, len).split('=', 2).last end |