logstash-output-file 2.2.0 → 2.2.1

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: aa80999ed0b695c5970cccfc4ef9a84c6c688d60
4
- data.tar.gz: c4f1584eff0dc5eae5bc4eb109b6102bba60f79a
3
+ metadata.gz: ac759dbc6b4d7a8f6d20148a827b42e715c8c18c
4
+ data.tar.gz: f56368f0a158b234ab87389aca19f77b8313d986
5
5
  SHA512:
6
- metadata.gz: ef3b7ea580bb5f0278fda8cf7c0da9f2ddffc6b1dcec67469e4e1f70d57fbc0cf4eefe1177147833a8afd214d905719f41f7bf25bda3ef3b1d538282497035db
7
- data.tar.gz: 07c59b12f42771a38d93b4021ed2d5992433e8ad6bda53bf951ad594a42845d93d502701678df20f977add39168cfdac06e0fbc59d13a3d1031f429b3dc695e4
6
+ metadata.gz: 1e1bd228df425931225906a795a43f9f931fffde10c35551067beea7fb926777350ed60687e7c78bad2263f20eea111dc9042efe17ac6a4733d82c1cdce069f5
7
+ data.tar.gz: 37aadaa7778fea4461561fe2235fc247d042f99aae46f81cb82ba08df4ec9257ae9c0623bacfe52df5102d1c161c8890cb72ab4d5491d0d76b015c259ad084c3
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 2.2.1
2
+ - Fixed Time specs
3
+
1
4
  ## 2.2.0
2
5
  - Add support for codec, using **json_lines** as default codec to keep default behavior.
3
6
  Ref: https://github.com/logstash-plugins/logstash-output-file/pull/9
@@ -8,7 +11,7 @@
8
11
  the system will add the incomming messages to the failure file.
9
12
 
10
13
  ## 2.0.0
11
- - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
14
+ - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
12
15
  instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
13
16
  - Dependency on logstash-core update to 2.0
14
17
 
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-file'
4
- s.version = '2.2.0'
4
+ s.version = '2.2.1'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "This output will write events to files on disk"
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"
@@ -241,7 +241,7 @@ describe LogStash::Outputs::File do
241
241
  end
242
242
 
243
243
  it 'write the events to a file when some part of a folder or file is dynamic' do
244
- t = Time.now
244
+ t = Time.now.utc
245
245
  good_event = LogStash::Event.new("@timestamp" => t)
246
246
 
247
247
  Stud::Temporary.directory do |path|
@@ -259,7 +259,7 @@ describe LogStash::Outputs::File do
259
259
  end
260
260
 
261
261
  it 'write the events to the generated path containing multiples fieldref' do
262
- t = Time.now
262
+ t = Time.now.utc
263
263
  good_event = LogStash::Event.new("error" => 42,
264
264
  "@timestamp" => t,
265
265
  "level" => "critical",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-file
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 2.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-24 00:00:00.000000000 Z
11
+ date: 2015-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logstash-core