I trying to use logstash 7.6.1 for logging my f5 waf/asm, when i trying to collect some logs from my f5 remote logging, i run logstash -f f5.config from my elk server.. it says this and looped:
[[main]>worker1] kv - Exception while parsing KV {:exception=>"Invalid FieldReference: `info tmm2[16492]: Rule /Common/myrule : source logreq: /mywebsitepath/"}
so what's problem here and how to fix this?
this is my f5.config :
input {
syslog {
port => 5144
}
}
filter {
kv {
field_split => ","
}
mutate {
split => { "attack_type" => "," }
split => { "sig_ids" => "," }
split => { "sig_names" => "," }
split => { "sig_cves" => "," }
split => { "staged_sig_ids" => "," }
split => { "staged_sig_names" => "," }
split => { "staged_sig_cves" => "," }
split => { "threat_campaign_names" => "," }
split => { "staged_threat_campaign_names" => "," }
split => { "violations" => "," }
split => { "sub_violations" => "," }
}
geoip {
source => "ip_client"
}
}
output {
elasticsearch {
hosts => ['myip:9200']
index => "waf-logs-%{+YYY.MM.dd}"
}
}
this is kibana i used for visualize logstash : Project
Thanks in advance.