This repository has been archived by the owner on Mar 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added LRU cache and ip addr validation
- Loading branch information
1 parent
1ee66e8
commit cc868b2
Showing
6 changed files
with
121 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ The following is a list of people who have contributed ideas, code, bug | |
reports, or in general have helped logstash along its way. | ||
|
||
Contributors: | ||
* nsherron90 - [email protected] | ||
* nicksherron - [email protected] | ||
|
||
Note: If you've sent us patches, bug reports, or otherwise contributed to | ||
Logstash, and you aren't on the list above and want to be, please let us know | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
Gem::Specification.new do |s| | ||
s.name = 'logstash-filter-greynoise' | ||
s.version = '0.1.5' | ||
s.version = '0.1.6' | ||
s.licenses = ['Apache-2.0'] | ||
s.summary = 'This greynoise filter takes contents in the ip field and returns greynoise api data (see https://greynoise.io/ for more info).' | ||
s.description = 'This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install logstash-filter-greynoise. This gem is not a stand-alone program' | ||
s.homepage = 'https://github.com/nsherron90/logstash-filter-greynoise' | ||
s.homepage = 'https://github.com/nicksherron/logstash-filter-greynoise' | ||
s.authors = ['nsherron90'] | ||
s.email = '[email protected]' | ||
s.require_paths = ['lib'] | ||
|
@@ -18,8 +18,10 @@ Gem::Specification.new do |s| | |
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "filter" } | ||
|
||
# Gem dependencies | ||
s.add_runtime_dependency 'logstash-core-plugin-api', '~> 2.0' | ||
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99" | ||
s.add_development_dependency 'logstash-devutils' | ||
s.add_runtime_dependency 'faraday', '~> 0.9.2' | ||
s.add_runtime_dependency 'faraday', '= 0.17.1' | ||
s.add_runtime_dependency 'lru_redux', "~> 1.1.0" | ||
|
||
|
||
end |