fluent-plugin-zookeeper-mntr 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/fluent/plugin/in_zookeeper_mntr.rb +1 -6
- data/lib/fluent/plugin/zookeeper/mntr/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8693dfce3d591db197fde917322c9433e47992707e1621bf6d18831056dfe266
|
4
|
+
data.tar.gz: d2529b37adabbedbc99b7c53022cdd5fbbe1389b6a94714b007f17edb03a8961
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3e76ae39b8978e7e7a108a4880211dacbcecd59acb8c50404fcc7f9a6b270c9e4a9aa6d40d408a01a157c621ecc30b842195dac54bed81717dfcb3a614fc0c5
|
7
|
+
data.tar.gz: e203ce847c1b88671fe08632a601e8c2de7b5e4c24f1136deae6aa448288429dc6b7b4ff4c0e231c2248f4f04d3be9cbf8b809cb333edd6273c56b65c1552c15
|
data/CHANGELOG.md
ADDED
@@ -30,15 +30,10 @@ module Fluent
|
|
30
30
|
|
31
31
|
def start
|
32
32
|
super
|
33
|
-
|
33
|
+
timer_execute(:in_zookeeper_mntr_runner, 0, repeat: false, &method(:run))
|
34
34
|
timer_execute(:in_zookeeper_mntr_runner, @interval, &method(:run))
|
35
35
|
end
|
36
36
|
|
37
|
-
def shutdown
|
38
|
-
@finished = true
|
39
|
-
super
|
40
|
-
end
|
41
|
-
|
42
37
|
private
|
43
38
|
|
44
39
|
def run
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-zookeeper-mntr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alex Scarborough
|
@@ -80,6 +80,7 @@ extensions: []
|
|
80
80
|
extra_rdoc_files: []
|
81
81
|
files:
|
82
82
|
- ".gitignore"
|
83
|
+
- CHANGELOG.md
|
83
84
|
- Gemfile
|
84
85
|
- LICENSE
|
85
86
|
- NOTICE
|