I have a log file with data like this
indent preformatted text by 4 spaces
172.16.3.254 Jun 22 11:00:40 date=2020-06-22 local7 notice time=11:00:39 devname="MIBLR_FW_1" devid="FG200ETK19907000" logid="0000000013" type="traffic" subtype="forward" level="notice" vd="root" eventtime=1592803839 srcip=10.212.134.155
i made a conf program to import data to elk
but it is not parsing grok filter
My filter section is : Preformatted text
filter {
grok {
match => { "message" => "%{IP:client}%{TIMESTAMP_ISO8601:date}\s+%{GREEDYDATA:KV}"}
}
kv {
source => "KV"
field_split => " "
}
}
Am i correct..if not kindly help me to correct my program