/nextcloud-logstash-pipeline

A Logstash pipeline to parse NextCloud logs

GNU General Public License v3.0GPL-3.0

nextcloud-logstash-pipeline

CI

Please do not use this for production, yet. This is a work in progress and we are yet in the process of finding potential problems with the ruleset. So do not rely on issues to check whether the rules are suitable for you or not

Pipeline to parse Nextcloud logs

Input and output

This pipeline has no input nor output. .gitignore includes input.conf and output.conf so you can use these files for your own input and output configuration.

Here are examples using a local Redis.

input {
  redis {
    host => "localhost"
    data_type => "list"
    key => "nextcloud"
  }
}

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