https://github.com/netways/filebeat-logstash-pipeline
Logstash pipeline to parse Filebeat logs
https://github.com/netways/filebeat-logstash-pipeline
Last synced: 5 months ago
JSON representation
Logstash pipeline to parse Filebeat logs
- Host: GitHub
- URL: https://github.com/netways/filebeat-logstash-pipeline
- Owner: NETWAYS
- License: gpl-2.0
- Created: 2024-04-16T13:41:16.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-25T14:21:12.000Z (about 2 years ago)
- Last Synced: 2025-01-16T15:12:57.215Z (over 1 year ago)
- Size: 13.7 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# filebeat-logstash-pipeline
Logstash pipeline to parse Filebeat logs
This pipeline has a very much restricted feature set. In fact it was built for a single use case. As of now it is unclear if the pipeline will even be developed further.
## 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 => "filebeat"
data_type => list
}
}
output {
redis {
key => "forwarder"
data_type => list
host => localhost
}
}
```