An open API service indexing awesome lists of open source software.

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.

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"]
}
}

```