File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ exclusions:
115115 SYSLOG_IDENTIFIER:
116116 - from here
117117 - MESSAGE_ID: [c7a787079b354eaaa9e77b371893cd27]
118- - MESSAGE: ["/Normal exit \ ( .*run\ ) /"]
118+ - MESSAGE: ["/Normal exit (.*run)/"]
119119` ` `
120120
121121This would cause `journal-brief` to ignore journal entries that
@@ -124,10 +124,11 @@ satisfy both conditions: `SYSLOG_IDENTIFIER` is `from here`, and
124124
125125It will also ignore any entries with the specified `MESSAGE_ID`.
126126
127- In addition, any entries whose `MESSAGE` matches the regular
128- expression `Normal exit \(.*run\)` will be excluded. Regular
129- expressions are indicated with `/` at the beginning and end of the
130- match string.
127+ In addition, any entries whose `MESSAGE` matches the (Python) regular
128+ expression `Normal exit (.*run)` will be excluded. Regular expressions
129+ are indicated with `/` at the beginning and end of the match string,
130+ and are used for matching (not searching) against the field in
131+ question at the beginning of the field's string value.
131132
132133The available journal fields are described in the
133134systemd.journal-fields(7) manual page.
You can’t perform that action at this time.
0 commit comments