logstash-input-dynamodb 2.0.0-java → 2.0.1-java
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/Gemfile +2 -0
- data/LICENSE.txt +201 -0
- data/NOTICE.txt +14 -0
- data/README.md +177 -0
- data/Rakefile +7 -0
- data/lib/logstash-input-dynamodb_jars.rb +25 -0
- data/lib/logstash/inputs/DynamoDBLogParser.rb +166 -0
- data/lib/logstash/inputs/LogStashRecordProcessor.rb +68 -0
- data/lib/logstash/inputs/LogStashRecordProcessorFactory.rb +43 -0
- data/lib/logstash/inputs/dynamodb.rb +341 -0
- data/logstash-input-dynamodb.gemspec +38 -0
- data/spec/inputs/dynamodb_spec.rb +198 -0
- data/spec/log_parser_spec.rb +63 -0
- data/spec/record_processor_and_factory_spec.rb +70 -0
- data/spec/spec_helper.rb +134 -0
- metadata +23 -4
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-input-dynamodb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Amazon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-03-
|
11
|
+
date: 2016-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -105,7 +105,22 @@ email: dynamodb-interest@amazon.com
|
|
105
105
|
executables: []
|
106
106
|
extensions: []
|
107
107
|
extra_rdoc_files: []
|
108
|
-
files:
|
108
|
+
files:
|
109
|
+
- Gemfile
|
110
|
+
- LICENSE.txt
|
111
|
+
- NOTICE.txt
|
112
|
+
- README.md
|
113
|
+
- Rakefile
|
114
|
+
- lib/logstash-input-dynamodb_jars.rb
|
115
|
+
- lib/logstash/inputs/DynamoDBLogParser.rb
|
116
|
+
- lib/logstash/inputs/LogStashRecordProcessor.rb
|
117
|
+
- lib/logstash/inputs/LogStashRecordProcessorFactory.rb
|
118
|
+
- lib/logstash/inputs/dynamodb.rb
|
119
|
+
- logstash-input-dynamodb.gemspec
|
120
|
+
- spec/inputs/dynamodb_spec.rb
|
121
|
+
- spec/log_parser_spec.rb
|
122
|
+
- spec/record_processor_and_factory_spec.rb
|
123
|
+
- spec/spec_helper.rb
|
109
124
|
homepage: https://github.com/logstash-plugins/logstash-input-dynamodb
|
110
125
|
licenses:
|
111
126
|
- Apache License (2.0)
|
@@ -140,4 +155,8 @@ rubygems_version: 2.4.8
|
|
140
155
|
signing_key:
|
141
156
|
specification_version: 4
|
142
157
|
summary: This input plugin scans a specified DynamoDB table and then reads changes to a DynamoDB table from the associated DynamoDB Stream.
|
143
|
-
test_files:
|
158
|
+
test_files:
|
159
|
+
- spec/inputs/dynamodb_spec.rb
|
160
|
+
- spec/log_parser_spec.rb
|
161
|
+
- spec/record_processor_and_factory_spec.rb
|
162
|
+
- spec/spec_helper.rb
|