Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

A Logstash Pipeline for Linux users
https://github.com/netways/user-logstash-pipeline

logtash

Last synced: about 2 months ago
JSON representation

A Logstash Pipeline for Linux users

Awesome Lists containing this project

README

        

# useradd-logstash-pipeline

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

## 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 => "user"
data_type => list
}
}

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