logstash-output-elasticsearch_java 2.0.1 → 2.0.2

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: 0129d6fbfed61e0217e1960edf07a2bb871ad248
4
- data.tar.gz: d7346627607fc8c022350717d08d4fb7c0e82f5c
3
+ metadata.gz: a5467c0eb6987bbc644c21942c60480d27521b2a
4
+ data.tar.gz: 5bbd2ada48fffbfa2594875177982b9245c5b233
5
5
  SHA512:
6
- metadata.gz: 22c727bfda6244ebe80b753f9d1732c1d0b92106bee5622fce63c9ef21cac9006181b4346f557e1ae6c00ad125e52f0021369fe2eb16f71b765eee453e81b28c
7
- data.tar.gz: c7f9fb12fd0da3486067aa926970242799e59389d3292be3a31070c7ae30fcfc48932a65721b7fdddf517f98dba7898dfd7b4e4f4de05a723a4901e715797097
6
+ metadata.gz: 4ebcd346bdd78df297791ec1e2c2f65f80894f8996f53eee0439717fd9a80ffc5acbeb2bbb25bb390c87a55115a786316b2ae02f6c29e38bbd16f9a7a60907bb
7
+ data.tar.gz: f3b04dade1f983bb2bf358ae80a9d08dc622c7b5504aa519bbb6bf46f5c18c420d217fb0c63396e5d9c5a52ff5e30c413338bea73057fa930c8ccf7acb438528
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 2.0.2
2
+ - Update loading of addons to conform with new naming scheme (replaced - with _)
3
+ ## 2.0.1
4
+ - Make the default template doc_value aware
1
5
  ## 2.0.0
2
6
  - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
3
7
  instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
@@ -372,7 +372,7 @@ class LogStash::Outputs::ElasticSearchJava < LogStash::Outputs::Base
372
372
  end
373
373
 
374
374
  @@plugins.each do |plugin|
375
- name = plugin.name.split('-')[-1]
375
+ name = plugin.name.split('_')[-1]
376
376
  client_settings.merge!(LogStash::Outputs::ElasticSearchJava.const_get(name.capitalize).create_client_config(self))
377
377
  end
378
378
 
@@ -539,10 +539,10 @@ class LogStash::Outputs::ElasticSearchJava < LogStash::Outputs::Base
539
539
  }
540
540
  end
541
541
 
542
- @@plugins = Gem::Specification.find_all{|spec| spec.name =~ /logstash-output-elasticsearch_java-/ }
542
+ @@plugins = Gem::Specification.find_all{|spec| spec.name =~ /logstash-output-elasticsearch_java_/ }
543
543
 
544
544
  @@plugins.each do |plugin|
545
- name = plugin.name.split('-')[-1]
545
+ name = plugin.name.split('_')[-1]
546
546
  require "logstash/outputs/elasticsearch_java/#{name}"
547
547
  end
548
548
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-output-elasticsearch_java'
3
- s.version = '2.0.1'
3
+ s.version = '2.0.2'
4
4
  s.licenses = ['apache-2.0']
5
5
  s.summary = "Logstash Output to Elasticsearch using Java node/transport client"
6
6
  s.description = "Output events to elasticsearch using the java client"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-elasticsearch_java
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-17 00:00:00.000000000 Z
11
+ date: 2015-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby
@@ -216,8 +216,8 @@ files:
216
216
  - vendor/jar-dependencies/runtime-jars/spatial4j-0.4.1.jar
217
217
  - vendor/jar-dependencies/runtime-jars/t-digest-3.0.jar
218
218
  - logstash-output-elasticsearch_java.gemspec
219
- - CHANGELOG.md
220
219
  - README.md
220
+ - CHANGELOG.md
221
221
  - CONTRIBUTORS
222
222
  - Gemfile
223
223
  - LICENSE