fluent-plugin-es-mohit 1.9.6 → 1.9.7
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/fluent-plugin-elasticsearch.gemspec +1 -1
- data/lib/fluent/plugin/out_elasticsearch.rb +1 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e07667294e9483fca08610d237d0825c915527ce
|
4
|
+
data.tar.gz: 4d175dd1bd5980fc0601c0fe46cf6f5007b05f19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0635facaa55b8cce7b862b05a4bb0d946a071446672868c68f73b185b67407a3b94083e2ec1f8a9299e60a6da754cb3b54b7eab04a44ee71f16a734ee578fe3
|
7
|
+
data.tar.gz: b633a58287c1c5359d3df37debc3cf68a64f8e95dc90d56ac89a999a636b09ffbe56a06ba72ef1c195378c32065815699c783ae56d917ec8d4cd48d7394078a7
|
@@ -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-es-mohit'
|
6
|
-
s.version = '1.9.
|
6
|
+
s.version = '1.9.7'
|
7
7
|
s.authors = ['mohit']
|
8
8
|
s.email = ['mohitsoral.87@gmail.com']
|
9
9
|
s.description = %q{ElasticSearch output plugin for Fluent event collector}
|
@@ -236,11 +236,9 @@ class Fluent::ElasticsearchOutput < Fluent::ObjectBufferedOutput
|
|
236
236
|
msgs << @dump_proc.call(header) << BODY_DELIMITER
|
237
237
|
msgs << @dump_proc.call(record) << BODY_DELIMITER
|
238
238
|
end
|
239
|
-
puts msgs
|
240
239
|
if @pipeline
|
241
|
-
msgs << "\"pipeline\"
|
240
|
+
msgs << "{\"pipeline\": \"" << @pipeline << "\"}" << BODY_DELIMITER
|
242
241
|
end
|
243
|
-
puts msgs
|
244
242
|
end
|
245
243
|
|
246
244
|
def update_body(record, op)
|