fluent-plugin-kinesis 0.4.1 → 1.0.0

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.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +13 -18
  3. data/.travis.yml +9 -9
  4. data/CHANGELOG.md +9 -0
  5. data/CONTRIBUTORS.txt +1 -1
  6. data/Gemfile +12 -9
  7. data/LICENSE.txt +39 -201
  8. data/Makefile +40 -0
  9. data/NOTICE.txt +1 -1
  10. data/README-v0.4.md +348 -0
  11. data/README.md +398 -183
  12. data/Rakefile +20 -14
  13. data/benchmark/dummer.conf +13 -0
  14. data/benchmark/firehose.conf +24 -0
  15. data/benchmark/producer.conf +28 -0
  16. data/benchmark/streams.conf +24 -0
  17. data/fluent-plugin-kinesis.gemspec +34 -23
  18. data/gemfiles/Gemfile.fluentd-0.10.58 +20 -0
  19. data/lib/fluent/plugin/kinesis_helper.rb +30 -0
  20. data/lib/fluent/plugin/kinesis_helper/api.rb +164 -0
  21. data/lib/fluent/plugin/kinesis_helper/class_methods.rb +120 -0
  22. data/lib/fluent/plugin/kinesis_helper/client.rb +36 -0
  23. data/lib/fluent/plugin/kinesis_helper/credentials.rb +51 -0
  24. data/lib/fluent/plugin/kinesis_helper/error.rb +38 -0
  25. data/lib/fluent/plugin/kinesis_helper/format.rb +85 -0
  26. data/lib/fluent/plugin/kinesis_helper/initialize.rb +58 -0
  27. data/lib/fluent/plugin/kinesis_helper/kpl.rb +81 -0
  28. data/lib/fluent/plugin/out_kinesis.rb +13 -11
  29. data/lib/fluent/plugin/out_kinesis_firehose.rb +44 -0
  30. data/lib/fluent/plugin/out_kinesis_producer.rb +38 -0
  31. data/lib/fluent/plugin/out_kinesis_streams.rb +47 -0
  32. data/lib/fluent/plugin/patched_detach_process_impl.rb +103 -0
  33. data/lib/fluent_plugin_kinesis/version.rb +17 -0
  34. data/lib/kinesis_producer.rb +24 -0
  35. data/lib/kinesis_producer/binary.rb +10 -0
  36. data/lib/kinesis_producer/daemon.rb +238 -0
  37. data/lib/kinesis_producer/library.rb +122 -0
  38. data/lib/kinesis_producer/protobuf/config.pb.rb +66 -0
  39. data/lib/kinesis_producer/protobuf/messages.pb.rb +151 -0
  40. data/lib/kinesis_producer/tasks/binary.rake +73 -0
  41. metadata +196 -36
  42. data/lib/fluent/plugin/version.rb +0 -16
  43. data/test/helper.rb +0 -32
  44. data/test/plugin/test_out_kinesis.rb +0 -641
@@ -0,0 +1,66 @@
1
+ #
2
+ # Copyright 2014-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
+ #
4
+ # Licensed under the Amazon Software License (the "License").
5
+ # You may not use this file except in compliance with the License.
6
+ # A copy of the License is located at
7
+ #
8
+ # http://aws.amazon.com/asl/
9
+ #
10
+ # or in the "license" file accompanying this file. This file is distributed
11
+ # on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12
+ # express or implied. See the License for the specific language governing
13
+ # permissions and limitations under the License.
14
+
15
+ ##
16
+ # This file is auto-generated. DO NOT EDIT!
17
+ #
18
+ require 'protobuf/message'
19
+
20
+ module KinesisProducer
21
+ module Protobuf
22
+ ##
23
+ # Message Classes
24
+ #
25
+ class AdditionalDimension < ::Protobuf::Message; end
26
+ class Configuration < ::Protobuf::Message; end
27
+
28
+
29
+ ##
30
+ # Message Fields
31
+ #
32
+ class AdditionalDimension
33
+ required :string, :key, 1
34
+ required :string, :value, 2
35
+ required :string, :granularity, 3
36
+ end
37
+
38
+ class Configuration
39
+ repeated ::KinesisProducer::Protobuf::AdditionalDimension, :additional_metric_dims, 128
40
+ optional :bool, :aggregation_enabled, 1, :default => true
41
+ optional :uint64, :aggregation_max_count, 2, :default => 4294967295
42
+ optional :uint64, :aggregation_max_size, 3, :default => 51200
43
+ optional :uint64, :collection_max_count, 4, :default => 500
44
+ optional :uint64, :collection_max_size, 5, :default => 5242880
45
+ optional :uint64, :connect_timeout, 6, :default => 6000
46
+ optional :string, :custom_endpoint, 7
47
+ optional :bool, :fail_if_throttled, 8, :default => false
48
+ optional :string, :log_level, 9, :default => "info"
49
+ optional :uint64, :max_connections, 10, :default => 24
50
+ optional :string, :metrics_granularity, 11, :default => "shard"
51
+ optional :string, :metrics_level, 12, :default => "detailed"
52
+ optional :string, :metrics_namespace, 13, :default => "KinesisProducerLibrary"
53
+ optional :uint64, :metrics_upload_delay, 14, :default => 60000
54
+ optional :uint64, :min_connections, 15, :default => 1
55
+ optional :uint64, :port, 16, :default => 443
56
+ optional :uint64, :rate_limit, 17, :default => 150
57
+ optional :uint64, :record_max_buffered_time, 18, :default => 100
58
+ optional :uint64, :record_ttl, 19, :default => 30000
59
+ optional :string, :region, 20
60
+ optional :uint64, :request_timeout, 21, :default => 6000
61
+ optional :bool, :verify_certificate, 22, :default => true
62
+ end
63
+
64
+ end
65
+ end
66
+
@@ -0,0 +1,151 @@
1
+ #
2
+ # Copyright 2014-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
+ #
4
+ # Licensed under the Amazon Software License (the "License").
5
+ # You may not use this file except in compliance with the License.
6
+ # A copy of the License is located at
7
+ #
8
+ # http://aws.amazon.com/asl/
9
+ #
10
+ # or in the "license" file accompanying this file. This file is distributed
11
+ # on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12
+ # express or implied. See the License for the specific language governing
13
+ # permissions and limitations under the License.
14
+
15
+ ##
16
+ # This file is auto-generated. DO NOT EDIT!
17
+ #
18
+ require 'protobuf/message'
19
+
20
+
21
+ ##
22
+ # Imports
23
+ #
24
+ require 'kinesis_producer/protobuf/config.pb'
25
+
26
+ module KinesisProducer
27
+ module Protobuf
28
+
29
+ ##
30
+ # Message Classes
31
+ #
32
+ class Tag < ::Protobuf::Message; end
33
+ class Record < ::Protobuf::Message; end
34
+ class AggregatedRecord < ::Protobuf::Message; end
35
+ class Message < ::Protobuf::Message; end
36
+ class PutRecord < ::Protobuf::Message; end
37
+ class Flush < ::Protobuf::Message; end
38
+ class Attempt < ::Protobuf::Message; end
39
+ class PutRecordResult < ::Protobuf::Message; end
40
+ class Credentials < ::Protobuf::Message; end
41
+ class SetCredentials < ::Protobuf::Message; end
42
+ class Dimension < ::Protobuf::Message; end
43
+ class Stats < ::Protobuf::Message; end
44
+ class Metric < ::Protobuf::Message; end
45
+ class MetricsRequest < ::Protobuf::Message; end
46
+ class MetricsResponse < ::Protobuf::Message; end
47
+
48
+
49
+ ##
50
+ # Message Fields
51
+ #
52
+ class Tag
53
+ required :string, :key, 1
54
+ optional :string, :value, 2
55
+ end
56
+
57
+ class Record
58
+ required :uint64, :partition_key_index, 1
59
+ optional :uint64, :explicit_hash_key_index, 2
60
+ required :bytes, :data, 3
61
+ repeated ::KinesisProducer::Protobuf::Tag, :tags, 4
62
+ end
63
+
64
+ class AggregatedRecord
65
+ repeated :string, :partition_key_table, 1
66
+ repeated :string, :explicit_hash_key_table, 2
67
+ repeated ::KinesisProducer::Protobuf::Record, :records, 3
68
+ end
69
+
70
+ class Message
71
+ required :uint64, :id, 1
72
+ optional :uint64, :source_id, 2
73
+ optional ::KinesisProducer::Protobuf::PutRecord, :put_record, 3
74
+ optional ::KinesisProducer::Protobuf::Flush, :flush, 4
75
+ optional ::KinesisProducer::Protobuf::PutRecordResult, :put_record_result, 5
76
+ optional ::KinesisProducer::Protobuf::Configuration, :configuration, 6
77
+ optional ::KinesisProducer::Protobuf::MetricsRequest, :metrics_request, 7
78
+ optional ::KinesisProducer::Protobuf::MetricsResponse, :metrics_response, 8
79
+ optional ::KinesisProducer::Protobuf::SetCredentials, :set_credentials, 9
80
+ end
81
+
82
+ class PutRecord
83
+ required :string, :stream_name, 1
84
+ required :string, :partition_key, 2
85
+ optional :string, :explicit_hash_key, 3
86
+ required :bytes, :data, 4
87
+ end
88
+
89
+ class Flush
90
+ optional :string, :stream_name, 1
91
+ end
92
+
93
+ class Attempt
94
+ required :uint32, :delay, 1
95
+ required :uint32, :duration, 2
96
+ required :bool, :success, 3
97
+ optional :string, :error_code, 4
98
+ optional :string, :error_message, 5
99
+ end
100
+
101
+ class PutRecordResult
102
+ repeated ::KinesisProducer::Protobuf::Attempt, :attempts, 1
103
+ required :bool, :success, 2
104
+ optional :string, :shard_id, 3
105
+ optional :string, :sequence_number, 4
106
+ end
107
+
108
+ class Credentials
109
+ required :string, :akid, 1
110
+ required :string, :secret_key, 2
111
+ optional :string, :token, 3
112
+ end
113
+
114
+ class SetCredentials
115
+ optional :bool, :for_metrics, 1
116
+ required ::KinesisProducer::Protobuf::Credentials, :credentials, 2
117
+ end
118
+
119
+ class Dimension
120
+ required :string, :key, 1
121
+ required :string, :value, 2
122
+ end
123
+
124
+ class Stats
125
+ required :double, :count, 1
126
+ required :double, :sum, 2
127
+ required :double, :mean, 3
128
+ required :double, :min, 4
129
+ required :double, :max, 5
130
+ end
131
+
132
+ class Metric
133
+ required :string, :name, 1
134
+ repeated ::KinesisProducer::Protobuf::Dimension, :dimensions, 2
135
+ required ::KinesisProducer::Protobuf::Stats, :stats, 3
136
+ required :uint64, :seconds, 4
137
+ end
138
+
139
+ class MetricsRequest
140
+ optional :string, :name, 1
141
+ optional :uint64, :seconds, 2
142
+ end
143
+
144
+ class MetricsResponse
145
+ repeated ::KinesisProducer::Protobuf::Metric, :metrics, 1
146
+ end
147
+
148
+ end
149
+
150
+ end
151
+
@@ -0,0 +1,73 @@
1
+ #
2
+ # Copyright 2014-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
+ #
4
+ # Licensed under the Amazon Software License (the "License").
5
+ # You may not use this file except in compliance with the License.
6
+ # A copy of the License is located at
7
+ #
8
+ # http://aws.amazon.com/asl/
9
+ #
10
+ # or in the "license" file accompanying this file. This file is distributed
11
+ # on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
12
+ # express or implied. See the License for the specific language governing
13
+ # permissions and limitations under the License.
14
+
15
+ require 'kinesis_producer'
16
+ require 'net/http'
17
+ require 'zip'
18
+
19
+ jar_version = "0.10.2"
20
+ jar_file = "amazon-kinesis-producer-#{jar_version}.jar"
21
+ jar_url = "https://search.maven.org/remotecontent?filepath=com/amazonaws/amazon-kinesis-producer/#{jar_version}/#{jar_file}"
22
+ cache_dir = Pathname.new(".cache")
23
+ cache_jar_file = cache_dir.join(jar_file)
24
+ binaries = KinesisProducer::Binary::Files.values
25
+
26
+ directory cache_dir
27
+
28
+ file cache_jar_file => [cache_dir] do |t|
29
+ puts "Downloading #{jar_file}"
30
+ download(jar_url, t.name)
31
+ end
32
+
33
+ binaries.each do |bin|
34
+ file bin => [cache_jar_file] do |t|
35
+ puts "Extracting #{bin} from #{jar_file}"
36
+ unzip(cache_jar_file, bin)
37
+ chmod 0755, bin
38
+ end
39
+ end
40
+
41
+ task :binaries => binaries
42
+
43
+ task :clean do
44
+ rm_rf cache_dir
45
+ rm_rf File.dirname(File.dirname(binary))
46
+ end
47
+
48
+ def download(url, target)
49
+ rm_f target
50
+ uri = URI(url)
51
+ Net::HTTP.start(uri.host, uri.port, use_ssl: true) do |https|
52
+ req = Net::HTTP::Get.new(uri.request_uri)
53
+ https.request(req) do |res|
54
+ open(target, 'wb') do |io|
55
+ res.read_body do |chunk|
56
+ io.write(chunk)
57
+ end
58
+ end
59
+ end
60
+ end
61
+ end
62
+
63
+ def unzip(zip_file, *targets)
64
+ rm_f targets
65
+ Zip::File.open(zip_file) do |z|
66
+ z.each do |entry|
67
+ if targets.include?(entry.name)
68
+ mkdir_p File.dirname(entry.name)
69
+ entry.extract(entry.name)
70
+ end
71
+ end
72
+ end
73
+ end
metadata CHANGED
@@ -1,29 +1,105 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-kinesis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 1.0.0
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: 2016-03-17 00:00:00.000000000 Z
11
+ date: 2016-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: fluentd
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.10.58
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '2'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 0.10.58
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '2'
33
+ - !ruby/object:Gem::Dependency
34
+ name: protobuf
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: 3.5.5
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: 3.5.5
47
+ - !ruby/object:Gem::Dependency
48
+ name: aws-sdk
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '2'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '2'
61
+ - !ruby/object:Gem::Dependency
62
+ name: concurrent-ruby
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '1'
68
+ type: :runtime
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '1'
75
+ - !ruby/object:Gem::Dependency
76
+ name: os
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: 0.9.6
82
+ type: :runtime
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: 0.9.6
13
89
  - !ruby/object:Gem::Dependency
14
90
  name: bundler
15
91
  requirement: !ruby/object:Gem::Requirement
16
92
  requirements:
17
93
  - - "~>"
18
94
  - !ruby/object:Gem::Version
19
- version: '1.3'
95
+ version: '1.10'
20
96
  type: :development
21
97
  prerelease: false
22
98
  version_requirements: !ruby/object:Gem::Requirement
23
99
  requirements:
24
100
  - - "~>"
25
101
  - !ruby/object:Gem::Version
26
- version: '1.3'
102
+ version: '1.10'
27
103
  - !ruby/object:Gem::Dependency
28
104
  name: rake
29
105
  requirement: !ruby/object:Gem::Requirement
@@ -38,74 +114,132 @@ dependencies:
38
114
  - - "~>"
39
115
  - !ruby/object:Gem::Version
40
116
  version: '10.0'
117
+ - !ruby/object:Gem::Dependency
118
+ name: test-unit
119
+ requirement: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: 3.0.8
124
+ type: :development
125
+ prerelease: false
126
+ version_requirements: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - ">="
129
+ - !ruby/object:Gem::Version
130
+ version: 3.0.8
41
131
  - !ruby/object:Gem::Dependency
42
132
  name: test-unit-rr
43
133
  requirement: !ruby/object:Gem::Requirement
44
134
  requirements:
45
- - - "~>"
135
+ - - ">="
46
136
  - !ruby/object:Gem::Version
47
- version: '1.0'
137
+ version: 1.0.3
48
138
  type: :development
49
139
  prerelease: false
50
140
  version_requirements: !ruby/object:Gem::Requirement
51
141
  requirements:
52
- - - "~>"
142
+ - - ">="
53
143
  - !ruby/object:Gem::Version
54
- version: '1.0'
144
+ version: 1.0.3
55
145
  - !ruby/object:Gem::Dependency
56
- name: fluentd
146
+ name: pry
57
147
  requirement: !ruby/object:Gem::Requirement
58
148
  requirements:
59
149
  - - ">="
60
150
  - !ruby/object:Gem::Version
61
- version: 0.10.53
62
- - - "<"
151
+ version: 0.10.1
152
+ type: :development
153
+ prerelease: false
154
+ version_requirements: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - ">="
63
157
  - !ruby/object:Gem::Version
64
- version: '2'
65
- type: :runtime
158
+ version: 0.10.1
159
+ - !ruby/object:Gem::Dependency
160
+ name: pry-byebug
161
+ requirement: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - ">="
164
+ - !ruby/object:Gem::Version
165
+ version: 3.3.0
166
+ type: :development
66
167
  prerelease: false
67
168
  version_requirements: !ruby/object:Gem::Requirement
68
169
  requirements:
69
170
  - - ">="
70
171
  - !ruby/object:Gem::Version
71
- version: 0.10.53
72
- - - "<"
172
+ version: 3.3.0
173
+ - !ruby/object:Gem::Dependency
174
+ name: pry-stack_explorer
175
+ requirement: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - ">="
73
178
  - !ruby/object:Gem::Version
74
- version: '2'
179
+ version: 0.4.9.2
180
+ type: :development
181
+ prerelease: false
182
+ version_requirements: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - ">="
185
+ - !ruby/object:Gem::Version
186
+ version: 0.4.9.2
75
187
  - !ruby/object:Gem::Dependency
76
- name: aws-sdk-core
188
+ name: net-empty_port
77
189
  requirement: !ruby/object:Gem::Requirement
78
190
  requirements:
79
191
  - - ">="
80
192
  - !ruby/object:Gem::Version
81
- version: 2.0.12
82
- - - "<"
193
+ version: 0.0.2
194
+ type: :development
195
+ prerelease: false
196
+ version_requirements: !ruby/object:Gem::Requirement
197
+ requirements:
198
+ - - ">="
83
199
  - !ruby/object:Gem::Version
84
- version: '3.0'
85
- type: :runtime
200
+ version: 0.0.2
201
+ - !ruby/object:Gem::Dependency
202
+ name: dummer
203
+ requirement: !ruby/object:Gem::Requirement
204
+ requirements:
205
+ - - ">="
206
+ - !ruby/object:Gem::Version
207
+ version: 0.4.0
208
+ type: :development
86
209
  prerelease: false
87
210
  version_requirements: !ruby/object:Gem::Requirement
88
211
  requirements:
89
212
  - - ">="
90
213
  - !ruby/object:Gem::Version
91
- version: 2.0.12
92
- - - "<"
214
+ version: 0.4.0
215
+ - !ruby/object:Gem::Dependency
216
+ name: rubyzip
217
+ requirement: !ruby/object:Gem::Requirement
218
+ requirements:
219
+ - - ">="
93
220
  - !ruby/object:Gem::Version
94
- version: '3.0'
221
+ version: 1.0.0
222
+ type: :development
223
+ prerelease: false
224
+ version_requirements: !ruby/object:Gem::Requirement
225
+ requirements:
226
+ - - ">="
227
+ - !ruby/object:Gem::Version
228
+ version: 1.0.0
95
229
  - !ruby/object:Gem::Dependency
96
- name: msgpack
230
+ name: mocha
97
231
  requirement: !ruby/object:Gem::Requirement
98
232
  requirements:
99
233
  - - ">="
100
234
  - !ruby/object:Gem::Version
101
- version: 0.5.8
102
- type: :runtime
235
+ version: 1.1.0
236
+ type: :development
103
237
  prerelease: false
104
238
  version_requirements: !ruby/object:Gem::Requirement
105
239
  requirements:
106
240
  - - ">="
107
241
  - !ruby/object:Gem::Version
108
- version: 0.5.8
242
+ version: 1.1.0
109
243
  description:
110
244
  email:
111
245
  executables: []
@@ -118,17 +252,45 @@ files:
118
252
  - CONTRIBUTORS.txt
119
253
  - Gemfile
120
254
  - LICENSE.txt
255
+ - Makefile
121
256
  - NOTICE.txt
257
+ - README-v0.4.md
122
258
  - README.md
123
259
  - Rakefile
260
+ - amazon-kinesis-producer-native-binaries/linux/kinesis_producer
261
+ - amazon-kinesis-producer-native-binaries/osx/kinesis_producer
262
+ - amazon-kinesis-producer-native-binaries/windows/kinesis_producer.exe
263
+ - benchmark/dummer.conf
264
+ - benchmark/firehose.conf
265
+ - benchmark/producer.conf
266
+ - benchmark/streams.conf
124
267
  - fluent-plugin-kinesis.gemspec
268
+ - gemfiles/Gemfile.fluentd-0.10.58
269
+ - lib/fluent/plugin/kinesis_helper.rb
270
+ - lib/fluent/plugin/kinesis_helper/api.rb
271
+ - lib/fluent/plugin/kinesis_helper/class_methods.rb
272
+ - lib/fluent/plugin/kinesis_helper/client.rb
273
+ - lib/fluent/plugin/kinesis_helper/credentials.rb
274
+ - lib/fluent/plugin/kinesis_helper/error.rb
275
+ - lib/fluent/plugin/kinesis_helper/format.rb
276
+ - lib/fluent/plugin/kinesis_helper/initialize.rb
277
+ - lib/fluent/plugin/kinesis_helper/kpl.rb
125
278
  - lib/fluent/plugin/out_kinesis.rb
126
- - lib/fluent/plugin/version.rb
127
- - test/helper.rb
128
- - test/plugin/test_out_kinesis.rb
279
+ - lib/fluent/plugin/out_kinesis_firehose.rb
280
+ - lib/fluent/plugin/out_kinesis_producer.rb
281
+ - lib/fluent/plugin/out_kinesis_streams.rb
282
+ - lib/fluent/plugin/patched_detach_process_impl.rb
283
+ - lib/fluent_plugin_kinesis/version.rb
284
+ - lib/kinesis_producer.rb
285
+ - lib/kinesis_producer/binary.rb
286
+ - lib/kinesis_producer/daemon.rb
287
+ - lib/kinesis_producer/library.rb
288
+ - lib/kinesis_producer/protobuf/config.pb.rb
289
+ - lib/kinesis_producer/protobuf/messages.pb.rb
290
+ - lib/kinesis_producer/tasks/binary.rake
129
291
  homepage: https://github.com/awslabs/aws-fluent-plugin-kinesis
130
292
  licenses:
131
- - Apache License, Version 2.0
293
+ - Amazon Software License
132
294
  metadata: {}
133
295
  post_install_message:
134
296
  rdoc_options: []
@@ -138,7 +300,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
138
300
  requirements:
139
301
  - - ">="
140
302
  - !ruby/object:Gem::Version
141
- version: 1.9.3
303
+ version: 2.0.0
142
304
  required_rubygems_version: !ruby/object:Gem::Requirement
143
305
  requirements:
144
306
  - - ">="
@@ -150,6 +312,4 @@ rubygems_version: 2.5.1
150
312
  signing_key:
151
313
  specification_version: 4
152
314
  summary: Fluentd output plugin that sends events to Amazon Kinesis.
153
- test_files:
154
- - test/helper.rb
155
- - test/plugin/test_out_kinesis.rb
315
+ test_files: []