Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/netways/user-logstash-pipeline
- Owner: NETWAYS
- License: gpl-3.0
- Created: 2022-04-25T15:59:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-02T07:14:09.000Z (over 1 year ago)
- Last Synced: 2024-04-30T09:04:44.320Z (8 months ago)
- Topics: logtash
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
}
}
```