logstash-input-s3-local 3.3.7 → 3.3.8
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/lib/logstash/inputs/{s3.rb → s3l.rb} +0 -0
- data/lib/logstash/inputs/{s3 → s3l}/patch.rb +0 -0
- data/logstash-input-s3.gemspec +1 -1
- data/spec/inputs/{s3_spec.rb → s3l_spec.rb} +1 -1
- data/spec/inputs/sincedb_spec.rb +1 -1
- data/spec/integration/{s3_spec.rb → s3l_spec.rb} +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0c1609d3b1deec97d8deb751d09e130acb3806a484532cb38ec65d7599ee9036
|
|
4
|
+
data.tar.gz: 6f828024c1db99ced057a11da290fa668b35053a82a36f6292e52dab71bd8fb6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a091ed70e87d7505447b6a4a83aedfdb76a60e6e53f77d59633897910b3dcc9b148db2d893897dbdfa1dca0f1fa75e5eeeb28f771a95fdd25a91da73709a18e
|
|
7
|
+
data.tar.gz: ce40c3f0bde740ed28c9737836d02c08eafea63458b70e107aa61a96dd42e54403ea1bde998b16069986e75b7ebc2eea2d576ea08dd2ca677222be35b6d684df
|
|
File without changes
|
|
File without changes
|
data/logstash-input-s3.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-input-s3-local'
|
|
4
|
-
s.version = '3.3.
|
|
4
|
+
s.version = '3.3.8'
|
|
5
5
|
s.licenses = ['Apache-2.0']
|
|
6
6
|
s.summary = "Streams events from files in a S3 bucket"
|
|
7
7
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
|
data/spec/inputs/sincedb_spec.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-s3-local
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.3.
|
|
4
|
+
version: 3.3.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
@@ -115,8 +115,8 @@ files:
|
|
|
115
115
|
- NOTICE.TXT
|
|
116
116
|
- README.md
|
|
117
117
|
- docs/index.asciidoc
|
|
118
|
-
- lib/logstash/inputs/
|
|
119
|
-
- lib/logstash/inputs/
|
|
118
|
+
- lib/logstash/inputs/s3l.rb
|
|
119
|
+
- lib/logstash/inputs/s3l/patch.rb
|
|
120
120
|
- logstash-input-s3.gemspec
|
|
121
121
|
- spec/fixtures/cloudfront.log
|
|
122
122
|
- spec/fixtures/compressed.log.gz
|
|
@@ -127,9 +127,9 @@ files:
|
|
|
127
127
|
- spec/fixtures/multiline.log
|
|
128
128
|
- spec/fixtures/multiple_compressed_streams.gz
|
|
129
129
|
- spec/fixtures/uncompressed.log
|
|
130
|
-
- spec/inputs/
|
|
130
|
+
- spec/inputs/s3l_spec.rb
|
|
131
131
|
- spec/inputs/sincedb_spec.rb
|
|
132
|
-
- spec/integration/
|
|
132
|
+
- spec/integration/s3l_spec.rb
|
|
133
133
|
- spec/support/helpers.rb
|
|
134
134
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
|
135
135
|
licenses:
|
|
@@ -167,7 +167,7 @@ test_files:
|
|
|
167
167
|
- spec/fixtures/multiline.log
|
|
168
168
|
- spec/fixtures/multiple_compressed_streams.gz
|
|
169
169
|
- spec/fixtures/uncompressed.log
|
|
170
|
-
- spec/inputs/
|
|
170
|
+
- spec/inputs/s3l_spec.rb
|
|
171
171
|
- spec/inputs/sincedb_spec.rb
|
|
172
|
-
- spec/integration/
|
|
172
|
+
- spec/integration/s3l_spec.rb
|
|
173
173
|
- spec/support/helpers.rb
|