New filter plugin: logstash-filter-memoize
- Dominant language
- Java
- Stars
- 14.9k
- Forks
- 3.5k
- Avg merge
- 19h 14m
- Merged PRs (30d)
- 63
Description
I want contribute to [logstash-plugins](https://github.com/logstash-plugins) my new filter plugin [`logstash-filter-memoize`](https://github.com/sw-jung/logstash-filter-memoize).
This filter can provides memoization to any filter.
See #8530 to show history of this plugin
### Example of usage
```ruby
filter {
memoize {
key => "%{host}"
fields => ["host_owner", "host_location"]
filter_name => "elasticsearch"
filter_options => {
query => "host:%{host}"
index => "known_host"
fields => {
"host_owner" => "host_owner"
"host_location" => "host_location"
}
}
}
}
```
### Links
- github: https://github.com/sw-jung/logstash-filter-memoize
- rubygems: https://rubygems.org/gems/logstash-filter-memoize
Contributor guide
Assessment
This issue has not been assessed yet.