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 +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/logstash/outputs/elasticsearch.rb +8 -6
- data/logstash-output-elasticsearch.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac1e8c0d30366df1953643db0a74114fde945b6c
|
4
|
+
data.tar.gz: c204a762798c0168acd124e17610d699e73b2244
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff724d09052909f07c31175b8606ee0173fd63120ab447fbad768dcece005a59f97fd36297096b4349141f8b2ac8b97dcf86e261d45220fe01b7c180351f8ee7
|
7
|
+
data.tar.gz: 111550510df082e50e2b9a3fe591137a610fd75dca925f2ae032f5c7f62c03c1b8a213ae1191dbcafe3f9e1a6475abb69819475e494854d846ea3391c9bd1300
|
data/CHANGELOG.md
CHANGED
@@ -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 "
|
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
|
-
#
|
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 <
|
29
|
+
# You can learn more about Elasticsearch at <https://www.elastic.co/products/elasticsearch>
|
30
30
|
#
|
31
|
-
#
|
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
|
-
#
|
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)
|
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.
|
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-
|
11
|
+
date: 2015-08-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|