fluent-plugin-kinesis 0.3.1 → 0.3.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -4
- data/fluent-plugin-kinesis.gemspec +3 -2
- data/lib/fluent/plugin/version.rb +1 -1
- metadata +12 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0c3b957da0274fb54f34fd10f4fc706a6a9670f
|
4
|
+
data.tar.gz: be5134cb5387338503aead9510affe55c009d675
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7536268a60bd45c3f08efd20e00761b593116edb6fa210c520fc45fe119d737e072d90de3a39b7280b0844355233f8f3fa755b8e32264311a1bcb6a259d28044
|
7
|
+
data.tar.gz: e18e85cad5c8f39239f67ac2e965fa27731bfd6ff4111a601099f5951c98d2bcb6fa3b8f41d62711bec464479b9b98a6e247bb2bf10f5e37f4c29efdae93481c
|
data/README.md
CHANGED
@@ -9,9 +9,16 @@ that sends events to [Amazon Kinesis](https://aws.amazon.com/kinesis/).
|
|
9
9
|
|
10
10
|
## Installation
|
11
11
|
|
12
|
-
This
|
13
|
-
|
14
|
-
|
12
|
+
This fluentd plugin is available as the `fluent-plugin-kinesis` gem from RubyGems.
|
13
|
+
|
14
|
+
gem install fluent-plugin-kinesis
|
15
|
+
|
16
|
+
Or you can install this plugin for [td-agent](https://github.com/treasure-data/td-agent) as:
|
17
|
+
|
18
|
+
fluent-gem install fluent-plugin-kinesis
|
19
|
+
|
20
|
+
If you would like to build by yourself and install, please see the section below.
|
21
|
+
Your need [bundler](http://bundler.io/) for this.
|
15
22
|
|
16
23
|
In case of using with Fluentd:
|
17
24
|
Fluentd will be also installed via the process below.
|
@@ -22,7 +29,7 @@ Fluentd will be also installed via the process below.
|
|
22
29
|
rake build
|
23
30
|
rake install
|
24
31
|
|
25
|
-
Also, you can use this plugin with
|
32
|
+
Also, you can use this plugin with td-agent:
|
26
33
|
You have to install td-agent before installing this plugin.
|
27
34
|
|
28
35
|
git clone https://github.com/awslabs/aws-fluent-plugin-kinesis.git
|
@@ -22,20 +22,21 @@ Gem::Specification.new do |spec|
|
|
22
22
|
spec.version = FluentPluginKinesis::VERSION
|
23
23
|
spec.author = 'Amazon Web Services'
|
24
24
|
spec.summary = %q{Fluentd output plugin that sends events to Amazon Kinesis.}
|
25
|
-
spec.homepage = "https://github.com/awslabs/aws-
|
25
|
+
spec.homepage = "https://github.com/awslabs/aws-fluent-plugin-kinesis"
|
26
26
|
spec.license = "Apache License, Version 2.0"
|
27
27
|
|
28
28
|
spec.files = `git ls-files`.split($/)
|
29
29
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
30
30
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
31
31
|
spec.require_paths = ["lib"]
|
32
|
+
spec.required_ruby_version = '>= 1.9.3'
|
32
33
|
|
33
34
|
spec.add_development_dependency "bundler", "~> 1.3"
|
34
35
|
spec.add_development_dependency "rake", "~> 10.0"
|
35
36
|
spec.add_development_dependency "test-unit-rr", "~> 1.0"
|
36
37
|
|
37
38
|
spec.add_dependency "fluentd", ">= 0.10.53", "< 0.13"
|
38
|
-
spec.add_dependency "aws-sdk-core", "
|
39
|
+
spec.add_dependency "aws-sdk-core", ">= 2.0.12", "< 3.0"
|
39
40
|
spec.add_dependency "multi_json", "~> 1.0"
|
40
41
|
spec.add_dependency "msgpack", ">= 0.5.8"
|
41
42
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-kinesis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.1
|
4
|
+
version: 0.3.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-05-
|
11
|
+
date: 2015-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -76,16 +76,22 @@ dependencies:
|
|
76
76
|
name: aws-sdk-core
|
77
77
|
requirement: !ruby/object:Gem::Requirement
|
78
78
|
requirements:
|
79
|
-
- -
|
79
|
+
- - '>='
|
80
80
|
- !ruby/object:Gem::Version
|
81
81
|
version: 2.0.12
|
82
|
+
- - <
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '3.0'
|
82
85
|
type: :runtime
|
83
86
|
prerelease: false
|
84
87
|
version_requirements: !ruby/object:Gem::Requirement
|
85
88
|
requirements:
|
86
|
-
- -
|
89
|
+
- - '>='
|
87
90
|
- !ruby/object:Gem::Version
|
88
91
|
version: 2.0.12
|
92
|
+
- - <
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '3.0'
|
89
95
|
- !ruby/object:Gem::Dependency
|
90
96
|
name: multi_json
|
91
97
|
requirement: !ruby/object:Gem::Requirement
|
@@ -134,7 +140,7 @@ files:
|
|
134
140
|
- lib/fluent/plugin/version.rb
|
135
141
|
- test/helper.rb
|
136
142
|
- test/plugin/test_out_kinesis.rb
|
137
|
-
homepage: https://github.com/awslabs/aws-
|
143
|
+
homepage: https://github.com/awslabs/aws-fluent-plugin-kinesis
|
138
144
|
licenses:
|
139
145
|
- Apache License, Version 2.0
|
140
146
|
metadata: {}
|
@@ -146,7 +152,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
146
152
|
requirements:
|
147
153
|
- - '>='
|
148
154
|
- !ruby/object:Gem::Version
|
149
|
-
version:
|
155
|
+
version: 1.9.3
|
150
156
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
151
157
|
requirements:
|
152
158
|
- - '>='
|