logstash-output-file 4.0.0 → 4.0.1
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/CHANGELOG.md +3 -0
- data/lib/logstash/outputs/file.rb +1 -1
- data/logstash-output-file.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: adaf924485fd1bb625fde5bd5461cace6c429c08
|
|
4
|
+
data.tar.gz: bf174048dd7393c9183a9c56765df469dee688b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3a0dbd7eace73e237997122f6441c8ad00f9dcf982f6533be8002dcc0bf2ee1cdcd15e705f1c2bc5ffed59eb639dd4650c8e71fb6875dd9edccfc2d4053e0709
|
|
7
|
+
data.tar.gz: f8dcaf8b47a11076224b889d903310e0a03ab44d0e1795ec0f1df15d4a7845079389cf62336c042d5c10e38caf90c9a48573e9360796ce740a5f09b6b6830035
|
data/CHANGELOG.md
CHANGED
|
@@ -219,7 +219,7 @@ class LogStash::Outputs::File < LogStash::Outputs::Base
|
|
|
219
219
|
now = Time.now
|
|
220
220
|
return unless now - @last_stale_cleanup_cycle >= @stale_cleanup_interval
|
|
221
221
|
|
|
222
|
-
@logger.
|
|
222
|
+
@logger.debug("Starting stale files cleanup cycle", :files => @files)
|
|
223
223
|
inactive_files = @files.select { |path, fd| not fd.active }
|
|
224
224
|
@logger.debug("%d stale files found" % inactive_files.count, :inactive_files => inactive_files)
|
|
225
225
|
inactive_files.each do |path, fd|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-output-file'
|
|
4
|
-
s.version = '4.0.
|
|
4
|
+
s.version = '4.0.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/logstash-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-file
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-09-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|