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