Hi Folks,
I am trying to achive certain conditions with logstash and wondering \if - if-else statement or validation is possible in Logstash filter?
I have below messages in json and parsing DMARC logs with logstash. I wanted to achieve
if auth_spf == pass then insert Tag DMARC aligned True
OR
if auth_dkim == pass then insert Tag DMARC aligned True
OR
if auth_spf || auth_dkim == pass then insert Tag DMARC aligned True
Can someone please help?