libsystemd-journal-1.3.4: Haskell bindings to libsystemd-journal

Safe HaskellNone
LanguageHaskell2010

Systemd.Journal

Contents

Synopsis

Writing to the journal

sendMessage :: Text -> IO () Source

Send a message to the systemd journal.

sendMessage t == sendJournalFields (message t)

sendMessageWith :: Text -> JournalFields -> IO () Source

Send a message and supply extra fields.

Note: The MESSAGE field will be replaced with the first parameter to this function. If you don't want this, use sendJournalFields

sendJournalFields :: JournalFields -> IO () Source

Send an exact set of fields to the systemd journal.

type JournalFields = HashMap JournalField ByteString Source

A structured object of all the fields in an entry in the journal. You generally don't construct this yourself, but you use the monoid instance and smart constructors below.

For example,

sendJournalFields (message "Oh god, it burns!" <> priority Emergency)

Standard systemd journal fields

message :: Text -> JournalFields Source

The human readable message string for this entry. This is supposed to be the primary text shown to the user. It is usually not translated (but might be in some cases), and is not supposed to be parsed for meta data.

messageId :: UUID -> JournalFields Source

A 128bit message identifier ID for recognizing certain message types, if this is desirable. Developers can generate a new ID for this purpose with journalctl --new-id.

priority :: Priority -> JournalFields Source

A priority value compatible with syslog's priority concept.

data Priority :: *

Log messages are prioritized.

Note that the Enum instance for this class is incomplete. We abuse toEnum and fromEnum to map these constructors to their corresponding bit-mask value in C, but not all uses cases provided by of enumerating that class are fully supported (issue #5).

Constructors

Emergency

system is unusable

Alert

action must be taken immediately

Critical

critical conditions

Error

error conditions

Warning

warning conditions

Notice

normal but significant condition

Info

informational

Debug

debug-level messages

Instances

Bounded Priority 
Enum Priority 
Eq Priority 
Read Priority 
Show Priority 
Generic Priority 
type Rep Priority = D1 D1Priority ((:+:) ((:+:) ((:+:) (C1 C1_0Priority U1) (C1 C1_1Priority U1)) ((:+:) (C1 C1_2Priority U1) (C1 C1_3Priority U1))) ((:+:) ((:+:) (C1 C1_4Priority U1) (C1 C1_5Priority U1)) ((:+:) (C1 C1_6Priority U1) (C1 C1_7Priority U1)))) 

codeFile :: FilePath -> JournalFields Source

The source code file generating this message.

codeLine :: Int -> JournalFields Source

The source code line number generating this message.

codeFunc :: Text -> JournalFields Source

The source code function name generating this message.

errno :: Int -> JournalFields Source

The low-level Unix error number causing this entry, if any. Contains the numeric value of errno(3).

syslogFacility :: Facility -> JournalFields Source

Syslog compatibility field.

syslogIdentifier :: Text -> JournalFields Source

Syslog compatibility field.

syslogPid :: CPid -> JournalFields Source

Syslog compatibility field.

Custom journal fields

mkJournalField :: Text -> JournalField Source

Construct a JournalField by converting to uppercase, as required by the journal.

journalField :: JournalField -> Text Source

Extract the name of a JournalField.

Reading the journal

openJournal Source

Arguments

:: MonadSafe m 
=> [JournalFlag]

A list of flags taken under logical disjunction (or) to specify which journal files to open.

-> Start

Where to begin reading journal entries from.

-> Maybe Filter

An optional filter to apply the journal. Only entries satisfying the filter will be emitted.

-> Maybe Integer

The data field size threshold, or Nothing for no field size limit

-> Producer' JournalEntry m () 

Opens the journal for reading, optionally filtering the journal entries. Filters are defined as arbitrary binary expression trees, which are then rewritten to be in conjunctive normal form before filtering with systemd to comply with systemd's rule system.

data Start Source

Where to begin reading the journal from.

Constructors

FromStart

Begin reading from the start of the journal.

FromEnd

Begin reading from the end of the journal.

FromCursor JournalEntryCursor

From a JournalEntryCursor.

data JournalEntry Source

An entry that has been read from the systemd journal.

journalEntryCursor :: JournalEntry -> JournalEntryCursor Source

A JournalCursor can be used as marker into the journal stream. This can be used to re-open the journal at a specific point in the future, and JournalCursors can be serialized to disk.

journalEntryRealtime :: JournalEntry -> Word64 Source

The time (in microseconds since the epoch) when this journal entry was received by the systemd journal.

data JournalFlag Source

Flags to specify which journal entries to read.

Constructors

LocalOnly

Only journal files generated on the local machine will be opened.

RuntimeOnly

Only volatile journal files will be opened, excluding those which are stored on persistent storage.

SystemOnly

Only journal files of system services and the kernel (in opposition to user session processes) will be opened.

data Filter Source

A logical expression to filter journal entries when reading the journal.

Constructors

Match JournalField ByteString

A binary exact match on a given JournalField.

And Filter Filter

Logical conjunction of two filters. Will only show journal entries that satisfy both conditions.

Or Filter Filter

Logical disjunction of two filters. Will show journal entries that satisfy either condition.