That would match the string "Email+backslash+r". You do not have that, you have "Email+CR" (carriage return). You have options
Set config.support_escapes in logstash.yml, but beware this is global so it might affect other parts of your pipeline. \r will then be treated as a literal CR
Do a regexp match, where I think \r will match a CR.
if [Email] =~ "Email\r?" { drop {} }
I had a third option but it slips my mind right now....
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.