fluent-plugin-elasticsearch 5.0.0 → 5.0.1
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/History.md +4 -1
- data/fluent-plugin-elasticsearch.gemspec +1 -1
- data/lib/fluent/plugin/out_elasticsearch_data_stream.rb +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c487c22f2307f4c034e7c3663cb86a65045a0241a986109742e4c2dc690bae62
|
4
|
+
data.tar.gz: 1de854db6c92fa22e6b859f9d707c823f9e01146747b20b3a97bf987d26fc08e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cda37994bd13fd7449ac9388747f890d25046cb26d4625b6a24aef020f7acc8c223caf1683d583eefec941a35aa8719d709be8380d8d43bb67d550dd958ea3a8
|
7
|
+
data.tar.gz: 900dca29d132e07b7f01c6cd319b4b17fa2ca96ebbe4202b2a46c3e241681727f8ba5d4ce625063fae4e5297718038db8c44f796cf27d90e7950baa6bb93ddb3
|
data/History.md
CHANGED
@@ -2,8 +2,11 @@
|
|
2
2
|
|
3
3
|
### [Unreleased]
|
4
4
|
|
5
|
+
### 5.0.1
|
6
|
+
- Use elasticsearch/api instead of elasticsearch/xpack (#870)
|
7
|
+
|
5
8
|
### 5.0.0
|
6
|
-
-
|
9
|
+
- Support #retry_operate on data stream (#863)
|
7
10
|
- Support placeholder in @data\_stream\_name for @type elasticsearch\_data\_stream (#862)
|
8
11
|
- Extract troubleshooting section (#861)
|
9
12
|
- Fix unmatched `<source>` close tag (#860)
|
@@ -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 = '5.0.
|
6
|
+
s.version = '5.0.1'
|
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}
|
@@ -18,9 +18,10 @@ module Fluent::Plugin
|
|
18
18
|
super
|
19
19
|
|
20
20
|
begin
|
21
|
+
require 'elasticsearch/api'
|
21
22
|
require 'elasticsearch/xpack'
|
22
23
|
rescue LoadError
|
23
|
-
raise Fluent::ConfigError, "'elasticsearch/xpack'
|
24
|
+
raise Fluent::ConfigError, "'elasticsearch/api', 'elasticsearch/xpack' are required for <@elasticsearch_data_stream>."
|
24
25
|
end
|
25
26
|
|
26
27
|
# ref. https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-create-data-stream.html
|
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: 5.0.
|
4
|
+
version: 5.0.1
|
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: 2021-
|
13
|
+
date: 2021-03-02 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: fluentd
|