fluent-plugin-elasticsearch 2.10.3 → 2.10.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.coveralls.yml +2 -2
- data/.editorconfig +9 -9
- data/.gitignore +18 -18
- data/.travis.yml +14 -14
- data/Gemfile +8 -8
- data/History.md +243 -239
- data/ISSUE_TEMPLATE.md +25 -25
- data/LICENSE.txt +201 -201
- data/PULL_REQUEST_TEMPLATE.md +10 -10
- data/README.md +807 -807
- data/Rakefile +11 -11
- data/appveyor.yml +35 -35
- data/fluent-plugin-elasticsearch.gemspec +31 -31
- data/lib/fluent/plugin/elasticsearch_constants.rb +13 -13
- data/lib/fluent/plugin/elasticsearch_error_handler.rb +89 -87
- data/lib/fluent/plugin/elasticsearch_index_template.rb +60 -60
- data/lib/fluent/plugin/filter_elasticsearch_genid.rb +25 -25
- data/lib/fluent/plugin/out_elasticsearch.rb +540 -538
- data/lib/fluent/plugin/out_elasticsearch_dynamic.rb +294 -294
- data/test/helper.rb +24 -24
- data/test/plugin/test_elasticsearch_error_handler.rb +195 -195
- data/test/plugin/test_filter_elasticsearch_genid.rb +44 -44
- data/test/plugin/test_out_elasticsearch.rb +2055 -2046
- data/test/plugin/test_out_elasticsearch_dynamic.rb +992 -992
- data/test/plugin/test_template.json +23 -23
- metadata +3 -3
@@ -1,23 +1,23 @@
|
|
1
|
-
{
|
2
|
-
"template": "te*",
|
3
|
-
"settings": {
|
4
|
-
"number_of_shards": 1
|
5
|
-
},
|
6
|
-
"mappings": {
|
7
|
-
"type1": {
|
8
|
-
"_source": {
|
9
|
-
"enabled": false
|
10
|
-
},
|
11
|
-
"properties": {
|
12
|
-
"host_name": {
|
13
|
-
"type": "string",
|
14
|
-
"index": "not_analyzed"
|
15
|
-
},
|
16
|
-
"created_at": {
|
17
|
-
"type": "date",
|
18
|
-
"format": "EEE MMM dd HH:mm:ss Z YYYY"
|
19
|
-
}
|
20
|
-
}
|
21
|
-
}
|
22
|
-
}
|
23
|
-
}
|
1
|
+
{
|
2
|
+
"template": "te*",
|
3
|
+
"settings": {
|
4
|
+
"number_of_shards": 1
|
5
|
+
},
|
6
|
+
"mappings": {
|
7
|
+
"type1": {
|
8
|
+
"_source": {
|
9
|
+
"enabled": false
|
10
|
+
},
|
11
|
+
"properties": {
|
12
|
+
"host_name": {
|
13
|
+
"type": "string",
|
14
|
+
"index": "not_analyzed"
|
15
|
+
},
|
16
|
+
"created_at": {
|
17
|
+
"type": "date",
|
18
|
+
"format": "EEE MMM dd HH:mm:ss Z YYYY"
|
19
|
+
}
|
20
|
+
}
|
21
|
+
}
|
22
|
+
}
|
23
|
+
}
|
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: 2.10.
|
4
|
+
version: 2.10.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- diogo
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-06-
|
12
|
+
date: 2018-06-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: fluentd
|
@@ -176,7 +176,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
176
176
|
version: '0'
|
177
177
|
requirements: []
|
178
178
|
rubyforge_project:
|
179
|
-
rubygems_version: 2.7.
|
179
|
+
rubygems_version: 2.7.6
|
180
180
|
signing_key:
|
181
181
|
specification_version: 4
|
182
182
|
summary: Elasticsearch output plugin for Fluent event collector
|