fluent-plugin-dynamodb-drc 0.0.4 → 0.0.5
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: e2be25099f56fa1bb330d0ee7be5a88ad5850c34
|
|
4
|
+
data.tar.gz: 8e3619a6493e9865374501c83439cb468cdbfdf9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b1cfd6157def7d080111b6da97f1aed4dba76902f5b7181e881992662a246e54a22af14a2f692751c559abcdf6667b7e23f59357be37f768ec5c7aac7b464dd9
|
|
7
|
+
data.tar.gz: 19988184d5eb5308adb32a9a363e662f4b970b6041a1572b154ed8ddde19855353cdbda2fc6e9081a0da73853a71d60b004e3a08c6bfde544f1c2e77649db993
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.5
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
module Fluent
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
class
|
|
6
|
-
Fluent::Plugin.register_output('
|
|
5
|
+
class DynamoDrcOutput < Fluent::BufferedOutput
|
|
6
|
+
Fluent::Plugin.register_output('dynamo_drc', self)
|
|
7
7
|
|
|
8
8
|
include DetachMultiProcessMixin
|
|
9
9
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
require 'fluent/test'
|
|
2
|
-
require 'fluent/plugin/
|
|
2
|
+
require 'fluent/plugin/out_dynamo_drc'
|
|
3
3
|
|
|
4
|
-
class
|
|
4
|
+
class DynamoDrcOutput < Test::Unit::TestCase
|
|
5
5
|
def setup
|
|
6
6
|
Fluent::Test.setup
|
|
7
7
|
end
|
|
@@ -16,7 +16,7 @@ class DynamoDBDrcOutput < Test::Unit::TestCase
|
|
|
16
16
|
]
|
|
17
17
|
|
|
18
18
|
def create_driver(conf = CONFIG)
|
|
19
|
-
Fluent::Test::BufferedOutputTestDriver.new(Fluent::
|
|
19
|
+
Fluent::Test::BufferedOutputTestDriver.new(Fluent::DynamoDrcOutput) do
|
|
20
20
|
def write(chunk)
|
|
21
21
|
chunk.read
|
|
22
22
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-dynamodb-drc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Takashi Matsuno
|
|
@@ -80,8 +80,8 @@ files:
|
|
|
80
80
|
- Rakefile
|
|
81
81
|
- VERSION
|
|
82
82
|
- fluent-plugin-dynamodb-drc.gemspec
|
|
83
|
-
- lib/fluent/plugin/
|
|
84
|
-
- test/
|
|
83
|
+
- lib/fluent/plugin/out_dynamo_drc.rb
|
|
84
|
+
- test/out_dynamo_drc.rb
|
|
85
85
|
homepage: https://github.com/kumapon/fluent-plugin-dynamodb-drc
|
|
86
86
|
licenses: []
|
|
87
87
|
metadata: {}
|
|
@@ -106,4 +106,4 @@ signing_key:
|
|
|
106
106
|
specification_version: 4
|
|
107
107
|
summary: Amazon DynamoDB output plugin for Fluent event collector
|
|
108
108
|
test_files:
|
|
109
|
-
- test/
|
|
109
|
+
- test/out_dynamo_drc.rb
|