/apache-error-logstash-pipeline

Logstash Pipeline to parse apache error logs

GNU General Public License v2.0GPL-2.0

apache-error-logstash-pipeline

Ready made code to parse error logs from Apache 2

Input and Output

This pipeline does not provide inputs or outputs so you can configure whatever you need. Files named input.conf and output.conf will not interfere with updates via git, so name your files accordingly.

Here are examples how your files could look if you want to use a local Redis instance.

input {
  redis {
    host => localhost
    key => "apache-error"
    data_type => list
  }
}

output {
  redis {
    key => "forwarder"
    data_type => list
    host => localhost
  }
}