How to filter out certain lines from log file in logstash

Um, COMBINEDAPACHELOG is for Apache logs and this isn't an Apache log. But you should use the grok filter:

grok {
  match => { "message" => "^FILE_PATH:%{GREEDYDATA:filepath}" }
}