Dear All,
I am newbie in fluentd. i would like to filter multi match grep in conf fluentd ? like command line grep "word1 word2 word3".
this my fluentd configuration :
<source>
type tail
format none
path /tmp/mule-app-biller-switch.log
pos_file /var/log/td-agent/mule-app-biller-switch.log.pos
tag mule-app-biller-switch_inquiry_req
</source>
<filter mule-app-biller-switch_inquiry_req>
@type grep
regexp1 message InquiryPrepaidRequestProcessor
regexp2 foo Inquiry
regexp3 bar Request
</filter>
<match mule-app-biller-switch_inquiry_req>
type exec_placeholder
command /etc/td-agent/scripts/parse_inq_req.sh "${message}${foo}${bar}"
</match>
please help, any suggestion, advice and sample configuration to grep /filter.
thanks
Alzril