logstash-filter-geoip 5.0.1-java → 5.0.2-java
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9b339f7fcaa0931cbe7ab56142d5b488afe3174e
|
|
4
|
+
data.tar.gz: 94704117d529a64f0fff27e84c5c20126d6e61c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 054f9aebd4881713da2a592ebc3beed0f0b937ff724904ac54ee2558b23d65d6c889c98c6b5f6220d6130750b96bb0b727cc1b8da066a6a74fc6daac6aa949c1
|
|
7
|
+
data.tar.gz: c06f3e6c54e1839054a4a1c3bcf9a9a6fa5a102fd3a732f0404803ca40269696251859a7d1691befad80b35597602945bdb5805e5254f4a74ea513dbb3853106
|
data/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-filter-geoip'
|
|
4
|
-
s.version = '5.0.
|
|
4
|
+
s.version = '5.0.2'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
|
-
s.summary = "
|
|
6
|
+
s.summary = "Adds geographical information about an IP address"
|
|
7
7
|
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 gemname. This gem is not a stand-alone program"
|
|
8
8
|
s.authors = ["Elastic"]
|
|
9
9
|
s.email = 'info@elastic.co'
|
data/spec/filters/geoip_spec.rb
CHANGED
|
@@ -93,8 +93,8 @@ describe LogStash::Filters::GeoIP do
|
|
|
93
93
|
|
|
94
94
|
it "should set other subfields of 'target' properly" do
|
|
95
95
|
expect(event.get("target").to_hash.keys.sort).to eq(["city_name", "ip", "region_name"])
|
|
96
|
-
expect(event.get("[target][city_name]")).to eq("
|
|
97
|
-
expect(event.get("[target][region_name]")).to eq("
|
|
96
|
+
expect(event.get("[target][city_name]")).to eq("Salem")
|
|
97
|
+
expect(event.get("[target][region_name]")).to eq("New Hampshire")
|
|
98
98
|
end
|
|
99
99
|
|
|
100
100
|
end
|
data/vendor/GeoLite2-City.mmdb
CHANGED
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-filter-geoip
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.0.
|
|
4
|
+
version: 5.0.2
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-11-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -109,6 +109,6 @@ rubyforge_project:
|
|
|
109
109
|
rubygems_version: 2.4.8
|
|
110
110
|
signing_key:
|
|
111
111
|
specification_version: 4
|
|
112
|
-
summary:
|
|
112
|
+
summary: Adds geographical information about an IP address
|
|
113
113
|
test_files:
|
|
114
114
|
- spec/filters/geoip_spec.rb
|