https://github.com/securitym0nkey/logstash-filter-combine
A logstash filter for combining multiple source fields into a target array.
https://github.com/securitym0nkey/logstash-filter-combine
logging logstash-filter logstash-plugin
Last synced: 5 months ago
JSON representation
A logstash filter for combining multiple source fields into a target array.
- Host: GitHub
- URL: https://github.com/securitym0nkey/logstash-filter-combine
- Owner: securitym0nkey
- License: mit
- Created: 2024-05-13T10:08:46.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-09T15:47:47.000Z (almost 2 years ago)
- Last Synced: 2024-07-09T20:09:08.869Z (almost 2 years ago)
- Topics: logging, logstash-filter, logstash-plugin
- Language: Ruby
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Logstash Combine Filter Plugin
This is a plugin for [Logstash](https://github.com/elastic/logstash).
It is fully free and fully open source. The license is [MIT](LICENSE).
## Documentation
This filter plugin combines multiple source fields into one array.
### Example config
To create an array of source1, source2 and source3 under combine_target
```
filter {
combine {
target => "combine_target"
sources => ["source1","source2", "source3"]
}
}
```