logstash-output-s3 2.0.1 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -0
- data/lib/logstash/outputs/s3.rb +10 -0
- data/logstash-output-s3.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c500a8b973a72f8d128b83622b4466a5e27a668
|
4
|
+
data.tar.gz: 5657dc9a715817dc793a2ea49f068fb4631ce768
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68717e2ecdf1df89324dc2dc24d1ef2e4c90dd9acbe060ed475069cd4ef2e2b3dc376018488a082111ffa48ce8b58447a5c38636c17ccb1488c3b2bc2b726d42
|
7
|
+
data.tar.gz: b900b8d2a80b3d5750fea97d4065fcfdce1070f99e99561272c7dc7bec6f926785ddc896130a49e59e67e5696f4385b0aa5675146a7e5d9d5fa9895a01171462
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
## 2.0.2
|
2
|
+
- Fixes an issue when tags were defined #39
|
1
3
|
## 2.0.0
|
2
4
|
- Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
|
3
5
|
instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
|
data/lib/logstash/outputs/s3.rb
CHANGED
@@ -110,6 +110,16 @@ class LogStash::Outputs::S3 < LogStash::Outputs::Base
|
|
110
110
|
# Specify how many workers to use to upload the files to S3
|
111
111
|
config :upload_workers_count, :validate => :number, :default => 1
|
112
112
|
|
113
|
+
# Define tags to be appended to the file on the S3 bucket.
|
114
|
+
#
|
115
|
+
# Example:
|
116
|
+
# tags => ["elasticsearch", "logstash", "kibana"]
|
117
|
+
#
|
118
|
+
# Will generate this file:
|
119
|
+
# "ls.s3.logstash.local.2015-01-01T00.00.tag_elasticsearch.logstash.kibana.part0.txt"
|
120
|
+
#
|
121
|
+
config :tags, :validate => :array, :default => []
|
122
|
+
|
113
123
|
# Exposed attributes for testing purpose.
|
114
124
|
attr_accessor :tempfile
|
115
125
|
attr_reader :page_counter
|
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'
|
4
|
-
s.version = '2.0.
|
4
|
+
s.version = '2.0.2'
|
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"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-output-s3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-10-
|
11
|
+
date: 2015-10-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|