logstash-output-elasticsearch 2.4.0-java → 2.4.1-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: addba3dc004cd06ac2c27a913a8339d9f6c3568b
4
- data.tar.gz: ad5076aabc199484fa42d8f95107e22df94b661f
3
+ metadata.gz: 9f8d5b26eb15f7a372ac43583a962009103f7a4a
4
+ data.tar.gz: 0b98bd6bf747ec4c576ec7426d67d93a7dc583a9
5
5
  SHA512:
6
- metadata.gz: ecddcf3de945eff27ad89305bc12b9b419b41c31758640edde275da7e1d86881b028b26496b0595717085c149d13517d527416ea9ef05a0249e3bc5051feb46e
7
- data.tar.gz: cf07a726ed0761fe6b8adefe598e0519c1a85f3b201043e0bb3a9a0cd123be9148717523dfb3e071e69abb660241664809f4433e73751a5a0ffd9e22cf370211
6
+ metadata.gz: dba81882f5f3fa79f7dd4b9b307f8a95dd53d5ec1876112226fe3e67a2991bad3a03260d704e13e905b194e9bdb05f7284453a1415b03631e9ac9a472fea78e7
7
+ data.tar.gz: bc25879d936c938d8c21fe85cc98b45fd7f9671a2ea0cd3c2e7120ec910b5a8ea6719ec8160b45af87800b24810a2cf59572a9fa13980332a3eccd5ef02be3f5
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 2.4.1
2
+ - Used debug level instead of info when emitting flush log message
3
+ - Updated docs about template
4
+
1
5
  ## 2.4.0
2
6
  - Scripted update support courtesy of @Da-Wei
3
7
 
@@ -87,7 +87,7 @@ module LogStash; module Outputs; class ElasticSearch
87
87
  def interval_flush
88
88
  if last_flush_seconds_ago >= @flush_interval
89
89
  begin
90
- @logger.info? && @logger.info("Flushing buffer at interval",
90
+ @logger.debug? && @logger.debug("Flushing buffer at interval",
91
91
  :instance => self.inspect,
92
92
  :interval => @flush_interval)
93
93
  flush_unsafe
@@ -44,8 +44,16 @@ module LogStash; module Outputs; class ElasticSearch
44
44
  # If not set, the included template will be used.
45
45
  mod.config :template, :validate => :path
46
46
 
47
- # Overwrite the current template with whatever is configured
48
- # in the `template` and `template_name` directives.
47
+ # The template_overwrite option will always overwrite the indicated template
48
+ # in Elasticsearch with either the one indicated by template or the included one.
49
+ # This option is set to false by default. If you always want to stay up to date
50
+ # with the template provided by Logstash, this option could be very useful to you.
51
+ # Likewise, if you have your own template file managed by puppet, for example, and
52
+ # you wanted to be able to update it regularly, this option could help there as well.
53
+ #
54
+ # Please note that if you are using your own customized version of the Logstash
55
+ # template (logstash), setting this to true will make Logstash to overwrite
56
+ # the "logstash" template (i.e. removing all customized settings)
49
57
  mod.config :template_overwrite, :validate => :boolean, :default => false
50
58
 
51
59
  # The document ID for the index. Useful for overwriting existing entries in
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-elasticsearch'
4
- s.version = '2.4.0'
4
+ s.version = '2.4.1'
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: 2.4.0
4
+ version: 2.4.1
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-08 00:00:00.000000000 Z
11
+ date: 2016-01-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby