Hi Everyone,
How can i convert my Grok output to comma separated
My Grok Pattern (Nginx access log)
%{IPORHOST:clientip} %{NGUSER:ident} %{NGUSER:auth} [%{HTTPDATE:timestamp}] \ "(?:%{WORD:verb} %{NOTSPACE:request}(?: HTTP/%{NUMBER:httpversion})?|-)" %{NUMBER:response} (?:%{NUMBER:bytes}|-) %{GREEDYDATA:message}
Expected Output
clientip,ident,auth,timestamp,verb,request,httpversion,response,bytes,message
Please help to build logstash config here.
Thanks
Viv