fluent-plugin-elasticsearch 4.3.1 → 4.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1cd81dcd51b189a0197c440aee9211661cd277c668ecf84474540393d77e47f0
4
- data.tar.gz: c8b22ada3eaa16f7423e04c804130f35a12c15de34565272a7048dda78fc0d83
3
+ metadata.gz: 69be22981ce5e59de9e573f933c29b51cbf8204ba849fb6ad3729482f94361c0
4
+ data.tar.gz: f20f079c0dfce9a2c763f89572f4b64e22b790e7b90a5eb542b5c129f6160bad
5
5
  SHA512:
6
- metadata.gz: 0564d3b40b180c425c68323dbaf7498e7483e4832a76262c8378ffdcb8bb4591e62b77a53a6a0c232ba418d397a2d74447d24b77441aca26a38aee02e0f389d2
7
- data.tar.gz: f0274d59d1a6411ab320d93f3840325b1379f417f50c716ecba75ea0eda31392d75c1f41efcb958c825745ada6aaa3f6810da96aae4bfde7f11e6e03602242aa
6
+ metadata.gz: 966e0aee9947dcfebe785713118dc014df4216ed34565e5a1672547a47eabef2cb93f15442165ca2249d633b272d41602a52d172675a1d8df50c83516c602ff8
7
+ data.tar.gz: 714f4b5048b78fad7d30fea2a5a0bce2d824fa2c6585ec480c3dd8bece71c9378a0faa0514906094a3a217662e12bc3d4e86ce9853b6e6977b077954b76fa489
data/History.md CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  ### [Unreleased]
4
4
 
5
+ ### 4.3.2
6
+ - Use log.debug to dump ES 8.x _type information (#852)
7
+
5
8
  ### 4.3.1
6
9
  - Unsplit huge records by default (#851)
7
10
 
@@ -3,7 +3,7 @@ $:.push File.expand_path('../lib', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = 'fluent-plugin-elasticsearch'
6
- s.version = '4.3.1'
6
+ s.version = '4.3.2'
7
7
  s.authors = ['diogo', 'pitr', 'Hiroshi Hatake']
8
8
  s.email = ['pitr.vern@gmail.com', 'me@diogoterror.com', 'cosmo0920.wp@gmail.com']
9
9
  s.description = %q{Elasticsearch output plugin for Fluent event collector}
@@ -349,7 +349,7 @@ EOC
349
349
  @type_name = '_doc'.freeze
350
350
  end
351
351
  if @last_seen_major_version >= 8 && @type_name != DEFAULT_TYPE_NAME_ES_7x
352
- log.info "Detected ES 8.x or above: This parameter has no effect."
352
+ log.debug "Detected ES 8.x or above: This parameter has no effect."
353
353
  @type_name = nil
354
354
  end
355
355
  end
@@ -930,7 +930,7 @@ EOC
930
930
  log.warn "Detected ES 7.x: `_doc` will be used as the document `_type`."
931
931
  target_type = '_doc'.freeze
932
932
  elsif @last_seen_major_version >=8
933
- log.warn "Detected ES 8.x or above: document type will not be used."
933
+ log.debug "Detected ES 8.x or above: document type will not be used."
934
934
  target_type = nil
935
935
  end
936
936
  else
@@ -940,7 +940,7 @@ EOC
940
940
  log.warn "Detected ES 7.x: `_doc` will be used as the document `_type`."
941
941
  target_type = '_doc'.freeze
942
942
  elsif @last_seen_major_version >= 8
943
- log.warn "Detected ES 8.x or above: document type will not be used."
943
+ log.debug "Detected ES 8.x or above: document type will not be used."
944
944
  target_type = nil
945
945
  else
946
946
  target_type = type_name
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-elasticsearch
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.3.1
4
+ version: 4.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - diogo
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-12-04 00:00:00.000000000 Z
13
+ date: 2020-12-07 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: fluentd