https://github.com/netways/selinux-logstash-pipeline
Logstash pipelines for SELinux logs, This Repository is in development process.
https://github.com/netways/selinux-logstash-pipeline
Last synced: 4 months ago
JSON representation
Logstash pipelines for SELinux logs, This Repository is in development process.
- Host: GitHub
- URL: https://github.com/netways/selinux-logstash-pipeline
- Owner: NETWAYS
- License: gpl-2.0
- Created: 2023-07-03T07:46:33.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-02T07:14:39.000Z (over 1 year ago)
- Last Synced: 2025-01-16T14:56:04.333Z (5 months ago)
- Size: 32.2 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# logstash-pipelines-selinux
Logstash pipelines for SELinux logs.[](https://github.com/netways/selinux-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 => "selinux"
data_type => list
}
}output {
redis {
key => "forwarder"
data_type => list
host => localhost
}
}
```