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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 051f2e7c848407dc78e6b7bf0aa098bd1eaeeff0
4
- data.tar.gz: d8c9b959f813c0cf89a099b8e8668f75cffe681b
3
+ metadata.gz: 2c500a8b973a72f8d128b83622b4466a5e27a668
4
+ data.tar.gz: 5657dc9a715817dc793a2ea49f068fb4631ce768
5
5
  SHA512:
6
- metadata.gz: 4c957d4510d4b9c885298c773a8745ca9b91888a58ea8ed03766ce4a0dc03f200b78925234835d1af1ba71af7f940df629bce6ef426f83c6fe259e6effaed7d3
7
- data.tar.gz: 464cf84dfc822edfb99d3099abf079740211a9547a778910123c1ebcdf3243994575e2ec98a00c15b12ff4fe6a1a839c003708ce21739aeb9ffbdc10b27ff7eb
6
+ metadata.gz: 68717e2ecdf1df89324dc2dc24d1ef2e4c90dd9acbe060ed475069cd4ef2e2b3dc376018488a082111ffa48ce8b58447a5c38636c17ccb1488c3b2bc2b726d42
7
+ data.tar.gz: b900b8d2a80b3d5750fea97d4065fcfdce1070f99e99561272c7dc7bec6f926785ddc896130a49e59e67e5696f4385b0aa5675146a7e5d9d5fa9895a01171462
@@ -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
@@ -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
@@ -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.1'
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.1
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-08 00:00:00.000000000 Z
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