logstash-output-s3-leprechaun-fork 1.0.8 → 1.0.9
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/outputs/s3.rb +10 -1
- data/logstash-output-s3.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f0d71dc162926200c0e5935adac21206d585676
|
4
|
+
data.tar.gz: 98136acb7b5526b965015d172cdffcf33b3f5913
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75253300c6eceacc43a200cd799152983dedfeaf02d6309c5ef2191fdffef51ac04d8ab11e923050cf3a7305618d10474ccf357c5186f8966c612270f7b59159
|
7
|
+
data.tar.gz: 359c978a39524a53aabb7b96352036b2b1bf4989e3fca2b03f09d0a35e488042f5ce7127f5e63c0691d23590fc367f09921fe2aa8b49b1ba978e9d6bd56059c6
|
data/lib/logstash/outputs/s3.rb
CHANGED
@@ -312,9 +312,18 @@ class LogStash::Outputs::S3 < LogStash::Outputs::Base
|
|
312
312
|
:file_base => file,
|
313
313
|
:current_page => 0,
|
314
314
|
:file_pointers => {
|
315
|
-
0 =>
|
315
|
+
0 => Zlip::GzipWriter.open(
|
316
|
+
get_temporary_filename(
|
317
|
+
@segregations[segregation][:directory],
|
318
|
+
@segregations[segregation][:file_base],
|
319
|
+
@segregations[segregation][:current_page]
|
320
|
+
),
|
321
|
+
'a')
|
316
322
|
}
|
317
323
|
}
|
324
|
+
|
325
|
+
|
326
|
+
|
318
327
|
rescue StandardError => e
|
319
328
|
@logger.info(e)
|
320
329
|
@logger.info("Failed to create temp directory")
|
data/logstash-output-s3.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-output-s3-leprechaun-fork'
|
4
|
-
s.version = '1.0.
|
4
|
+
s.version = '1.0.9'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = "This plugin was created for store the logstash's events into Amazon Simple Storage Service (Amazon S3)"
|
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/plugin install gemname. This gem is not a stand-alone program"
|