-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.rulebase
59 lines (44 loc) · 1.53 KB
/
sample.rulebase
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
version=2
# Some sample rules and strings matching them
# Prefix sample:
# myhostname: code=23
prefix=%host:char-to:\x3a%:
rule=prefixed_code:code=%code:number%
# myhostname: name=somename
rule=prefixed_name:name=%name:word%
# Reset prefix to default (empty value):
prefix=
# Quantity: 555
rule=tag1:Quantity: %N:number%
# Weight: 42kg
rule=tag2:Weight: %N:number%%unit:word%
annotate=tag2:+fat="free"
# %%
rule=tag3,percent:\x25%%
annotate=percent:+percent="100"
annotate=tag3:+whole="whale"
annotate=tag3:+part="wha"
# literal
rule=tag4,tag5,tag6,tag4:literal
annotate=tag4:+this="that"
# first field,second field,third field,fourth field
rule=csv:%r1:char-to:,%,%r2:char-to:,%,%r3:char-to:,%,%r4:rest%
# CSV: field1,,field3
rule=better-csv:CSV: %f1:char-sep:,%,%f2:char-sep:,%,%f3:char-sep:,%
# Snow White and the Seven Dwarfs
rule=tale:Snow White and %company:rest%
# 2012-10-11 src=127.0.0.1 dst=88.111.222.19
rule=:%date:date-iso% src=%src:ipv4% dst=%dst:ipv4%
# Oct 29 09:47:08 server rsyslogd: rsyslogd's groupid changed to 103
rule=syslog:%date1:date-rfc3164% %host:word% %tag:char-to:\x3a%: %text:rest%
# Oct 29 09:47:08
rule=rfc3164:%date1:date-rfc3164%
# 1985-04-12T19:20:50.52-04:00
rule=rfc5424:%date1:date-rfc5424%
# 1985-04-12T19:20:50.52-04:00 testing 123
rule=rfc5424:%date1:date-rfc5424% %test:word% %test2:number%
# quoted_string="Contents of a quoted string cannot include quote marks"
rule=quote:quoted_string=%quote:quoted-string%
# host451
# generates { basename:"host", hostid:451 }
rule=:%basename:alpha%%hostid:number%