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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 870c47db1fa939c77ec066e10254652bcd5fb58a
4
- data.tar.gz: af5d05f6f7d6c83f7faab4ce65ff9429a29dbbf1
3
+ metadata.gz: aaa5ec5810087093e3846b66bee57e579f9f1ae2
4
+ data.tar.gz: 657828395b6b6a2f920931729bd188cf8467cbb4
5
5
  SHA512:
6
- metadata.gz: df14a5cbf391411b52db2ef7bfb1300301c29cefdd44953e902dea38b59b1a8947cc976fd951393f0174346679e3dd0d7e709358a3458d43901edf5e3b2343b6
7
- data.tar.gz: e8c3d40de862710b826d1f57890694ed315564e11d19f02039ee507413f020d8b23a7f0b3e75af68e5b2a876da4d18a5827010795865ccb62ccb81bad0656039
6
+ metadata.gz: 6153949c84ea11ccb41babd9d35cf9cd218c9a1b4f30877c96ccdf74b751f7b2ad476cb789d2bdb8a81b872bd24a822043f8e1fa17098e01ff55e88df4084245
7
+ data.tar.gz: 6601cb695955ecbe66822220c79d613a5d5f74ea67ac08ad2a09e9c61b041cc553e6400a90c2d527b26a293e77f534243bb4d9cf49a32a2ff49050f066dafe28
data/CHANGELOG.md CHANGED
@@ -2,4 +2,7 @@
2
2
  - Minor fix to allow url's without a dot.
3
3
 
4
4
  ## 1.0.2
5
- - Only updated gemspec description
5
+ - Only updated gemspec description
6
+
7
+ ## 1.0.3
8
+ - map_url as mandatory to be required.
@@ -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
- config :map_url, :validate => :string
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.2'
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"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-filter-webservicemap
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic