logstash-filter-webservicemap 1.0.2 → 1.0.3
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/CHANGELOG.md +4 -1
- data/lib/logstash/filters/webservicemap.rb +6 -2
- data/logstash-filter-webservicemap.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aaa5ec5810087093e3846b66bee57e579f9f1ae2
|
|
4
|
+
data.tar.gz: 657828395b6b6a2f920931729bd188cf8467cbb4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6153949c84ea11ccb41babd9d35cf9cd218c9a1b4f30877c96ccdf74b751f7b2ad476cb789d2bdb8a81b872bd24a822043f8e1fa17098e01ff55e88df4084245
|
|
7
|
+
data.tar.gz: 6601cb695955ecbe66822220c79d613a5d5f74ea67ac08ad2a09e9c61b041cc553e6400a90c2d527b26a293e77f534243bb4d9cf49a32a2ff49050f066dafe28
|
data/CHANGELOG.md
CHANGED
|
@@ -33,8 +33,12 @@ class LogStash::Filters::WebServiceMap < LogStash::Filters::Base
|
|
|
33
33
|
# value with the new mapping value.
|
|
34
34
|
config :override, :validate => :boolean, :default => false
|
|
35
35
|
|
|
36
|
-
# The full URI path of a Web service who generates an yml format response.
|
|
37
|
-
|
|
36
|
+
# The full URI path of a Web service who generates an JSON, yml or CSV format response.
|
|
37
|
+
# requires to append as suffix the format type. Ex: http://localhost:8080/geoPoints?type=json
|
|
38
|
+
# http://localhost:8080/geoPoints/json
|
|
39
|
+
# http://localhost:8080/geoPoints/csv
|
|
40
|
+
# If no suffix matches, defaults to YAML
|
|
41
|
+
config :map_url, :validate => :string, :required => true
|
|
38
42
|
|
|
39
43
|
# When using a map file or url, this setting will indicate how frequently
|
|
40
44
|
# (in seconds) logstash will check the YAML file or url for updates.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-filter-webservicemap'
|
|
4
|
-
s.version = '1.0.
|
|
4
|
+
s.version = '1.0.3'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "A general search and replace tool which uses a configured web service to determine replacement values."
|
|
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/plugin install logstash-filter-webservicemap. This gem is not a stand-alone program. See https://github.com/angel9484/logstash-filter-webservicemap"
|