logstash-filter-sleep 1.0.0 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/logstash-filter-sleep.gemspec +3 -3
- data/spec/filters/sleep_spec.rb +48 -2
- data/spec/spec_helper.rb +3 -0
- metadata +17 -23
- data/.gitignore +0 -4
- data/Rakefile +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ff753359a4c4e031a53508db32ce7bd5af1f275
|
4
|
+
data.tar.gz: a1e3d75810e4763a542e1a8e8be3b880e9fd74ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02a363ba0ee8ff54f20935efaf1926cca232c4b369bd808c773fcd250048c5811f0a0e21f920fb5b02f4b1c1a9efc738a211821dc600e0f4bbe96683ab62603e
|
7
|
+
data.tar.gz: 5e1e27fa2222b4e050f65065b1e65d6fdd34d30107de34dd6ff0d7ca8e0e833f8491a61180dfabfffd501ad398776cfd47efbb3c46bfbe53d884f2008af01162
|
data/README.md
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
# Logstash Plugin
|
2
2
|
|
3
|
-
This is a plugin for [Logstash](https://github.com/
|
3
|
+
This is a plugin for [Logstash](https://github.com/elastic/logstash).
|
4
4
|
|
5
5
|
It is fully free and fully open source. The license is Apache 2.0, meaning you are pretty much free to use it however you want in whatever way.
|
6
6
|
|
7
7
|
## Documentation
|
8
8
|
|
9
|
-
Logstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one [central location](http://www.
|
9
|
+
Logstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one [central location](http://www.elastic.co/guide/en/logstash/current/).
|
10
10
|
|
11
11
|
- For formatting code or config example, you can use the asciidoc `[source,ruby]` directive
|
12
|
-
- For more asciidoc formatting tips, see the excellent reference here https://github.com/
|
12
|
+
- For more asciidoc formatting tips, see the excellent reference here https://github.com/elastic/docs#asciidoc-guide
|
13
13
|
|
14
14
|
## Need Help?
|
15
15
|
|
@@ -83,4 +83,4 @@ Programming is not a required skill. Whatever you've seen about open source and
|
|
83
83
|
|
84
84
|
It is more important to the community that you are able to contribute.
|
85
85
|
|
86
|
-
For more information about contributing, see the [CONTRIBUTING](https://github.com/
|
86
|
+
For more information about contributing, see the [CONTRIBUTING](https://github.com/elastic/logstash/blob/master/CONTRIBUTING.md) file.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-filter-sleep'
|
4
|
-
s.version = '
|
4
|
+
s.version = '2.0.0'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = "Sleep a given amount of time"
|
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"
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.require_paths = ["lib"]
|
12
12
|
|
13
13
|
# Files
|
14
|
-
s.files =
|
14
|
+
s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT']
|
15
15
|
|
16
16
|
# Tests
|
17
17
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
20
20
|
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "filter" }
|
21
21
|
|
22
22
|
# Gem dependencies
|
23
|
-
s.add_runtime_dependency "logstash-core",
|
23
|
+
s.add_runtime_dependency "logstash-core", "~> 2.0.0.snapshot"
|
24
24
|
|
25
25
|
s.add_development_dependency 'logstash-devutils'
|
26
26
|
end
|
data/spec/filters/sleep_spec.rb
CHANGED
@@ -1,5 +1,51 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
# encoding: utf-8
|
2
|
+
require_relative "../spec_helper"
|
3
|
+
require "logstash/plugin"
|
4
|
+
require "logstash/event"
|
3
5
|
|
4
6
|
describe LogStash::Filters::Sleep do
|
7
|
+
|
8
|
+
let(:time) { 1 }
|
9
|
+
subject { LogStash::Filters::Sleep.new("time" => time) }
|
10
|
+
|
11
|
+
let(:properties) { {:name => "foo"} }
|
12
|
+
let(:event) { LogStash::Event.new(properties) }
|
13
|
+
|
14
|
+
it "should register without errors" do
|
15
|
+
plugin = LogStash::Plugin.lookup("filter", "sleep").new("time" => time)
|
16
|
+
expect { plugin.register }.to_not raise_error
|
17
|
+
end
|
18
|
+
|
19
|
+
describe "sleep for a given time" do
|
20
|
+
|
21
|
+
let(:time) { 5 }
|
22
|
+
|
23
|
+
before(:each) do
|
24
|
+
subject.register
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should sleep for N seconds and continue" do
|
28
|
+
expect(subject).to receive(:sleep).with(5)
|
29
|
+
subject.filter(event)
|
30
|
+
end
|
31
|
+
|
32
|
+
context "when using every N events" do
|
33
|
+
|
34
|
+
let(:messages) { 20 }
|
35
|
+
let(:every) { 5 }
|
36
|
+
subject { LogStash::Filters::Sleep.new("time" => time, "every" => every ) }
|
37
|
+
|
38
|
+
before(:each) do
|
39
|
+
subject.register
|
40
|
+
end
|
41
|
+
|
42
|
+
it "should sleep for N seconds and continue" do
|
43
|
+
expect(subject).to receive(:sleep).with(5).exactly(4).times
|
44
|
+
messages.times do
|
45
|
+
subject.filter(event)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
50
|
+
end
|
5
51
|
end
|
data/spec/spec_helper.rb
ADDED
metadata
CHANGED
@@ -1,66 +1,59 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-filter-sleep
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
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
|
+
date: 2015-09-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name: logstash-core
|
15
|
-
version_requirements: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - '>='
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 1.4.0
|
20
|
-
- - <
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 2.0.0
|
23
14
|
requirement: !ruby/object:Gem::Requirement
|
24
15
|
requirements:
|
25
|
-
- -
|
26
|
-
- !ruby/object:Gem::Version
|
27
|
-
version: 1.4.0
|
28
|
-
- - <
|
16
|
+
- - ~>
|
29
17
|
- !ruby/object:Gem::Version
|
30
|
-
version: 2.0.0
|
18
|
+
version: 2.0.0.snapshot
|
19
|
+
name: logstash-core
|
31
20
|
prerelease: false
|
32
21
|
type: :runtime
|
33
|
-
- !ruby/object:Gem::Dependency
|
34
|
-
name: logstash-devutils
|
35
22
|
version_requirements: !ruby/object:Gem::Requirement
|
36
23
|
requirements:
|
37
|
-
- -
|
24
|
+
- - ~>
|
38
25
|
- !ruby/object:Gem::Version
|
39
|
-
version:
|
26
|
+
version: 2.0.0.snapshot
|
27
|
+
- !ruby/object:Gem::Dependency
|
40
28
|
requirement: !ruby/object:Gem::Requirement
|
41
29
|
requirements:
|
42
30
|
- - '>='
|
43
31
|
- !ruby/object:Gem::Version
|
44
32
|
version: '0'
|
33
|
+
name: logstash-devutils
|
45
34
|
prerelease: false
|
46
35
|
type: :development
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
47
41
|
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
|
48
42
|
email: info@elastic.co
|
49
43
|
executables: []
|
50
44
|
extensions: []
|
51
45
|
extra_rdoc_files: []
|
52
46
|
files:
|
53
|
-
- .gitignore
|
54
47
|
- CHANGELOG.md
|
55
48
|
- CONTRIBUTORS
|
56
49
|
- Gemfile
|
57
50
|
- LICENSE
|
58
51
|
- NOTICE.TXT
|
59
52
|
- README.md
|
60
|
-
- Rakefile
|
61
53
|
- lib/logstash/filters/sleep.rb
|
62
54
|
- logstash-filter-sleep.gemspec
|
63
55
|
- spec/filters/sleep_spec.rb
|
56
|
+
- spec/spec_helper.rb
|
64
57
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
65
58
|
licenses:
|
66
59
|
- Apache License (2.0)
|
@@ -83,9 +76,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
76
|
version: '0'
|
84
77
|
requirements: []
|
85
78
|
rubyforge_project:
|
86
|
-
rubygems_version: 2.
|
79
|
+
rubygems_version: 2.4.8
|
87
80
|
signing_key:
|
88
81
|
specification_version: 4
|
89
82
|
summary: Sleep a given amount of time
|
90
83
|
test_files:
|
91
84
|
- spec/filters/sleep_spec.rb
|
85
|
+
- spec/spec_helper.rb
|
data/.gitignore
DELETED