logstash-input-lumberjack 0.1.10 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/logstash-input-lumberjack.gemspec +1 -1
- data/spec/logstash/size_queue_timeout_spec.rb +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: 3beafbd417f6d367d69928e342803f0adb0fc516
|
4
|
+
data.tar.gz: b8a25e2d29c609895803f925a81c9f8d7b63c96a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4a7af21e205301027d46870a59be8b84968cb02645c20cbc9c39fb5265dcb40b6d76d4b4648b09508987cceac7d2640a44fa26e7d5e75db296156f058cd2033
|
7
|
+
data.tar.gz: 14c6c53f2a86156acc7533d7e864392ad38509e60db4a93e85b17b33d9c93a9eb481384766c94d7da5922027f03607b8e3aea0da05e48b924c40ab8c6d7496e2
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
# 1.0.1
|
2
|
+
- Fix a randomization issue for rspec https://github.com/logstash-plugins/logstash-input-lumberjack/issues/33
|
3
|
+
# 1.0.0
|
4
|
+
- Default supported plugins are pushed to 1.0
|
1
5
|
# 0.1.10
|
2
6
|
- Deprecating the `max_clients` option
|
3
7
|
- Use a circuit breaker to start refusing new connection when the queue is blocked for too long.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-input-lumberjack'
|
4
|
-
s.version = '0.1
|
4
|
+
s.version = '1.0.1'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = "Receive events using the lumberjack protocol."
|
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"
|
@@ -74,7 +74,7 @@ describe "LogStash::SizedQueueTimeout" do
|
|
74
74
|
|
75
75
|
context "when the queue is occupied but not full" do
|
76
76
|
before :each do
|
77
|
-
Flores::Random.iterations(
|
77
|
+
Flores::Random.iterations(1..max_size-1) { subject << "hurray" }
|
78
78
|
end
|
79
79
|
|
80
80
|
it "doesnt block on pop" do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-input-lumberjack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1
|
4
|
+
version: 1.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: 2015-06-
|
11
|
+
date: 2015-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: logstash-core
|