Hi !
So I made a huge logstash config for my wifi hotspots.
I managed to create nearly all the filters but I have a problem with one of them.
I receive this log:
<134>1 1473769601.251850936 APVDA001 flows allow src=172.27.7.238 dst=64.233.166.188 mac=4C:34:88:01:2B:5B protocol=tcp sport=55267 dport=5228
And I put this grok filter:
%{SYSLOG5424PRI}%{INT} %{NUMBER:timestamp_unix} %{WORD:borne} flows %{WORD:flow_type} src=%{IP:ip_source} dst=%{IP:ip_dest} mac=%{MAC:mac} protocol=%{WORD:protocol} sport=%{NUMBER:sport} dport=%{NUMBER:dport}
It works well with a grok debugger but some fields do not appear in Kibana: the fields ip_source, ip_dest, mac, protocol, sport and dport.
Why ? It parses well the others !
Thanks