Filebeat : how to exclude lines

Have you tried the exclude_lines options on the input?
I'm using that since Version 5 to exclude some nonsensical lines (empty lines and separator lines) in our logs.

filebeat.inputs:
- type: log
  exclude_lines: [ "^-*$", "^$" ]
...

For your case it would probably be something like
excluse_lines: [ "OPTIONS" ]