summaryrefslogtreecommitdiffstats
path: root/software/rsyslog.page
blob: b55c1271531baf8bd70fbb3a9315b6685909351d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

Put these in files like `/etc/rsyslog.d/40-grobid-skip.conf`.

Filter out lines from a given program:

    :programname, isequal, "GROBID" ~

Or matching a pattern:

    :msg, startswith, "inserting line to HBase: sha1:"
    :msg, contains, " INFO GET http"

For list of operations ("isequal", "regex", "contains"):

    https://www.rsyslog.com/doc/v8-stable/configuration/filters.html

For list of properties (":msg", ":programname"):

    https://www.rsyslog.com/doc/v8-stable/configuration/properties.html