-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogStash.conf
45 lines (39 loc) · 831 Bytes
/
LogStash.conf
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
input {
beats {
port => 5443
ssl => false
}
filter {
if "sfsf_HOlog" in [tags] {
grok {
match => { "message" => ["%{TIMESTAMP_ISO8601:logdate}(?<msg>((?!Stacktrace=).)*)(Stacktrace=(?<Stacktrace>.*))?"] }
}
date {
match => [ "logdate" , "ISO8601" ]
timezone => ["UTC"]
}
kv {
source => "msg"
field_split_pattern => " "
trim_key => " "
trim_value => " "
}
mutate {
convert => {
"SizeInMB" => "float"
"SizeInB" => "integer"
}
}
}
}
output{
if "sfsf_HOlog" in [tags]{
elasticsearch {
hosts => ["XXX", "XXX", "XXX"]
manage_template => false
index => "humongousobject_logs"
document_type => "humongousobject_logs"
}
stdout { codec => rubydebug }
}
}