Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/netways/nextcloud-logstash-pipeline

A Logstash pipeline to parse NextCloud logs
https://github.com/netways/nextcloud-logstash-pipeline

logtash

Last synced: about 2 months ago
JSON representation

A Logstash pipeline to parse NextCloud logs

Awesome Lists containing this project

README

        

# nextcloud-logstash-pipeline

[![CI](https://github.com/netways/nextcloud-logstash-pipeline/workflows/Logstash%20Syntax/badge.svg?event=push)](https://github.com/netways/nextcloud-logstash-pipeline/actions?query=workflow%3A%22Logstash+Syntax%22)

**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"
}
}
```