https://github.com/netways/syslog-logstash-pipeline
A Logstash Pipeline for basic syslog lines
https://github.com/netways/syslog-logstash-pipeline
logtash
Last synced: 4 months ago
JSON representation
A Logstash Pipeline for basic syslog lines
- Host: GitHub
- URL: https://github.com/netways/syslog-logstash-pipeline
- Owner: NETWAYS
- License: gpl-3.0
- Created: 2020-03-31T13:40:35.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-01T10:27:27.000Z (over 1 year ago)
- Last Synced: 2025-01-16T14:55:58.874Z (5 months ago)
- Topics: logtash
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 10
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# syslog-logstash-pipeline
[](https://github.com/NETWAYS/syslog-logstash-pipeline/actions?query=workflow%3A%22Logstash+Syntax%22)
Logstash pipeline for basic syslog lines
## Inputs and Outputs ##
If you use files called `input.conf` and `output.conf` they will not collide with this rules, even when you want to pull new versions.
### Examples ###
Here's an example for an `input.conf`
```
input {
redis {
host => "localhost"
data_type => "list"
key => "netways-syslog-input"
}
}
```and one for `output.conf`.
```
output {
redis {
host => "localhost"
data_type => "list"
key => "netways-syslog-output"
}
}
```