https://github.com/netways/cron-logstash-pipeline
A Logstash Pipeline for Linux cron
https://github.com/netways/cron-logstash-pipeline
logstash
Last synced: 8 months ago
JSON representation
A Logstash Pipeline for Linux cron
- Host: GitHub
- URL: https://github.com/netways/cron-logstash-pipeline
- Owner: NETWAYS
- License: gpl-3.0
- Created: 2022-03-06T15:25:21.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-02T07:23:05.000Z (over 2 years ago)
- Last Synced: 2025-01-16T15:12:58.545Z (over 1 year ago)
- Topics: logstash
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cron-logstash-pipeline
[](https://github.com/netways/cron-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 => "group"
data_type => list
}
}
output {
redis {
key => "forwarder"
data_type => list
host => localhost
}
}
```