fluent-plugin-datadog-log 0.1.0.rc14 → 0.1.0.rc15
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 48f6a440bb237e77dd62042587330841626eeede
|
|
4
|
+
data.tar.gz: f2e312c44b3032cc816a9bba7f42c576efc6269d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2113b75093acc466335f947fcd62a2ff363f60d78493337acff859ed8fcfd414804ea2702dcc43bf04540596d078f8c4450807f35e6d7d2a8d428b31afeb4065
|
|
7
|
+
data.tar.gz: 0c4e945a346d023a635ff7cffe9a4dfe3ae0ae22b942f62778fa53f4aec89ff12556a9072b9ddcc69339a8825bd62c35d11a38b87770f188ea63c3f38235c56d
|
data/Gemfile.lock
CHANGED
|
@@ -8,7 +8,7 @@ eos
|
|
|
8
8
|
gem.homepage = \
|
|
9
9
|
'https://github.com/mumoshu/fluent-plugin-datadog-log'
|
|
10
10
|
gem.license = 'Apache-2.0'
|
|
11
|
-
gem.version = '0.1.0.
|
|
11
|
+
gem.version = '0.1.0.rc15'
|
|
12
12
|
gem.authors = ['Yusuke KUOKA']
|
|
13
13
|
gem.email = ['ykuoka@gmail.com']
|
|
14
14
|
gem.required_ruby_version = Gem::Requirement.new('>= 2.0')
|
|
@@ -486,14 +486,14 @@ module Fluent::Plugin
|
|
|
486
486
|
unless event.respond_to? :last
|
|
487
487
|
@log.warn 'Dropping a malformed event: ' \
|
|
488
488
|
"'#{event.inspect}'. " \
|
|
489
|
-
'
|
|
489
|
+
'An event should be an array.'
|
|
490
490
|
next
|
|
491
491
|
end
|
|
492
492
|
record = event.last
|
|
493
493
|
unless record.is_a?(Hash)
|
|
494
494
|
@log.warn 'Dropping log entries with malformed record: ' \
|
|
495
495
|
"'#{record.inspect}'. " \
|
|
496
|
-
|
|
496
|
+
"A record should be a hash but was a #{record.class}."
|
|
497
497
|
next
|
|
498
498
|
end
|
|
499
499
|
tag = record.first
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-datadog-log
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.0.
|
|
4
|
+
version: 0.1.0.rc15
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yusuke KUOKA
|
|
@@ -174,6 +174,8 @@ files:
|
|
|
174
174
|
- lib/fluent/plugin/out_datadog_log.rb
|
|
175
175
|
- lib/fluent/plugin/out_datadog_log.rb~
|
|
176
176
|
- pkg/fluent-plugin-datadog-log-0.1.0.rc13.gem
|
|
177
|
+
- pkg/fluent-plugin-datadog-log-0.1.0.rc14.gem
|
|
178
|
+
- pkg/fluent-plugin-datadog-log-0.1.0.rc15.gem
|
|
177
179
|
- test/helper.rb
|
|
178
180
|
- test/plugin/base_test.rb
|
|
179
181
|
- test/plugin/constants.rb
|