logstash-output-elasticsearch 1.0.5-java → 1.0.6-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: 13b9c568e35e8c9cf0c00e2053eeb5e211d3dc85
4
- data.tar.gz: 53fe7ee502a2732b4269f2340e2ef91113f4c321
3
+ metadata.gz: ac1e8c0d30366df1953643db0a74114fde945b6c
4
+ data.tar.gz: c204a762798c0168acd124e17610d699e73b2244
5
5
  SHA512:
6
- metadata.gz: 29dcf588985119b61008ac9e23830d86e7e5084b141ca64647bd012feb05995c362c4671dd81c27c616e8bd58dc328e80ef6952650873ad572b189b8d3b4dda3
7
- data.tar.gz: 4189789ca1d7cba88c7e2f1090d499adcb5bcfca6f52d9ffbb1432b5c5bd224f8ab1f78459e746908f94571a4be4b920ebc7e6e0dc0a7bc478989aa8ef4be82d
6
+ metadata.gz: ff724d09052909f07c31175b8606ee0173fd63120ab447fbad768dcece005a59f97fd36297096b4349141f8b2ac8b97dcf86e261d45220fe01b7c180351f8ee7
7
+ data.tar.gz: 111550510df082e50e2b9a3fe591137a610fd75dca925f2ae032f5c7f62c03c1b8a213ae1191dbcafe3f9e1a6475abb69819475e494854d846ea3391c9bd1300
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 1.0.6
2
+ - Fix warning about Concurrent lib deprecation
3
+
1
4
  ## 1.0.4
2
5
  - Update to Elasticsearch 1.7
3
6
 
@@ -3,7 +3,7 @@ require "logstash/namespace"
3
3
  require "logstash/environment"
4
4
  require "logstash/outputs/base"
5
5
  require "logstash/json"
6
- require "concurrent_ruby"
6
+ require "concurrent"
7
7
  require "stud/buffer"
8
8
  require "socket" # for Socket.gethostname
9
9
  require "thread" # for safe queueing
@@ -14,7 +14,7 @@ require 'logstash-output-elasticsearch_jars.rb'
14
14
  # output for Logstash. If you plan on using the Kibana web interface, you'll
15
15
  # need to use this output.
16
16
  #
17
- # *VERSION NOTE*: Your Elasticsearch cluster must be running Elasticsearch 1.0.0 or later.
17
+ # *VERSION NOTE*: Your Elasticsearch cluster must be running Elasticsearch 1.0.0 or later.
18
18
  #
19
19
  # If you want to set other Elasticsearch options that are not exposed directly
20
20
  # as configuration options, there are two methods:
@@ -26,15 +26,15 @@ require 'logstash-output-elasticsearch_jars.rb'
26
26
  # Elasticsearch cluster as a client node, so it will show up in Elasticsearch's
27
27
  # cluster status.
28
28
  #
29
- # You can learn more about Elasticsearch at <http://www.elasticsearch.org>
29
+ # You can learn more about Elasticsearch at <https://www.elastic.co/products/elasticsearch>
30
30
  #
31
- # ## Operational Notes
31
+ # ==== Operational Notes
32
32
  #
33
33
  # If using the default `protocol` setting ("node"), your firewalls might need
34
34
  # to permit port 9300 in *both* directions (from Logstash to Elasticsearch, and
35
35
  # Elasticsearch to Logstash)
36
36
  #
37
- # ## Retry Policy
37
+ # ==== Retry Policy
38
38
  #
39
39
  # By default all bulk requests to ES are synchronous. Not all events in the bulk requests
40
40
  # always make it successfully. For example, there could be events which are not formatted
@@ -44,7 +44,7 @@ require 'logstash-output-elasticsearch_jars.rb'
44
44
  # policy described below. Events of this nature are ones which experience ES error codes described as
45
45
  # retryable errors.
46
46
  #
47
- # Retryable Errors:
47
+ # *Retryable Errors:*
48
48
  #
49
49
  # - 429, Too Many Requests (RFC6585)
50
50
  # - 503, The server is currently unable to handle the request due to a temporary overloading or maintenance of the server.
@@ -85,6 +85,8 @@ class LogStash::Outputs::ElasticSearch < LogStash::Outputs::Base
85
85
 
86
86
  # The document type to write events to. Generally you should try to write only
87
87
  # similar events to the same 'type'. String expansion `%{foo}` works here.
88
+ # Unless you set 'document_type', the event 'type' will be used if it exists
89
+ # otherwise the document type will be assigned the value of 'logs'
88
90
  config :document_type, :validate => :string
89
91
 
90
92
  # Starting in Logstash 1.3 (unless you set option `manage_template` to false)
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-elasticsearch'
4
- s.version = '1.0.5'
4
+ s.version = '1.0.6'
5
5
  s.licenses = ['apache-2.0']
6
6
  s.summary = "Logstash Output to Elasticsearch"
7
7
  s.description = "Output events to elasticsearch"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-elasticsearch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-20 00:00:00.000000000 Z
11
+ date: 2015-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby