logstash-filter-ipinfo 0.1.2 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/logstash/filters/{greynoise.rb → ipinfo.rb} +0 -0
- data/logstash-filter-ipinfo.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c37ae6a378fd181c1e6c1d412d30deabe278e27352a2061dfb7fb27c67051214
|
|
4
|
+
data.tar.gz: d25adf0944d64e3c45efb6ba68cd85b4637e6161b89f1cca4e7f56ada23fc41c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ebc3b01ed0a787faff4df3462cf6ccf3ce36b53d134cb770635289ea76c4d85c4f8ce91c17a82435e426d6f91f368d28d05da034fc347867b1e16b98196e019f
|
|
7
|
+
data.tar.gz: 04da56bd61431b5f751c7a631a5f53f022702fbb38d085fcd6a3e7f6b1fad7decd9bad8f1f7b1bb18f16582c1b09de1716119175762c44801c72f35dc303ee30
|
data/README.md
CHANGED
|
@@ -21,7 +21,7 @@ Or you can build it yourself:
|
|
|
21
21
|
git clone https://github.com/nsherron90/logstash-filter-ipinfo.git
|
|
22
22
|
bundle install
|
|
23
23
|
gem build logstash-filter-ipinfo.gemspec
|
|
24
|
-
$LS_HOME/bin/logstash-plugin install logstash-filter-ipinfo-0.
|
|
24
|
+
$LS_HOME/bin/logstash-plugin install logstash-filter-ipinfo-1.0.0.gem
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
### 2. Filter Configuration
|
|
File without changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-filter-ipinfo'
|
|
3
|
-
s.version = '0.
|
|
3
|
+
s.version = '1.0.0'
|
|
4
4
|
s.licenses = ['Apache-2.0']
|
|
5
5
|
s.summary = 'This ipinfo filter takes contents in the ip field and returns ip geolocation api data (see https://ipinfo.io/ for more info).'
|
|
6
6
|
s.description = 'Geolocation enrichment for IP addresses matched from logstash events'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-filter-ipinfo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- nsherron90
|
|
@@ -64,7 +64,7 @@ files:
|
|
|
64
64
|
- Gemfile
|
|
65
65
|
- LICENSE
|
|
66
66
|
- README.md
|
|
67
|
-
- lib/logstash/filters/
|
|
67
|
+
- lib/logstash/filters/ipinfo.rb
|
|
68
68
|
- logstash-filter-ipinfo.gemspec
|
|
69
69
|
- spec/filters/greynoise_spec.rb
|
|
70
70
|
- spec/spec_helper.rb
|