kurchatov 0.4.5 → 0.4.6
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/app/Gemfile +1 -1
- data/app/Gemfile.lock +2 -2
- data/debian/changelog +12 -0
- data/lib/kurchatov/plugin/config.rb +2 -1
- data/lib/kurchatov/version.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: b6e1d34d6fcb98e1be197acf85a0bd17d91a0e4e
|
|
4
|
+
data.tar.gz: 6e6047fd40b42401815a712d40b9b84c48e6fddb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2d601d6e41e5e6102389b6a39ecb36aa1eea9fbb683959ca77b3f946248990afd7bbc033519407c480070a3645237e97bad8996572d31c5213506ff45358d298
|
|
7
|
+
data.tar.gz: 001ea41bc352f5acd2d63399b502c49c1625da3aebd6f267c4e5d0cf8b4ddb0fac3a4e75776721f8ed77e558f6b0e7e1784ede8068adf58e39f546619cfccb92
|
data/app/Gemfile
CHANGED
data/app/Gemfile.lock
CHANGED
|
@@ -14,7 +14,7 @@ GEM
|
|
|
14
14
|
file-tail (1.0.12)
|
|
15
15
|
tins (~> 0.5)
|
|
16
16
|
ipaddress (0.8.0)
|
|
17
|
-
kurchatov (0.4.
|
|
17
|
+
kurchatov (0.4.6)
|
|
18
18
|
beefcake (>= 0.3.5)
|
|
19
19
|
ohai
|
|
20
20
|
libyajl2 (1.0.1)
|
|
@@ -54,7 +54,7 @@ DEPENDENCIES
|
|
|
54
54
|
beefcake (= 0.5.0)
|
|
55
55
|
ffi-rzmq
|
|
56
56
|
file-tail
|
|
57
|
-
kurchatov (= 0.4.
|
|
57
|
+
kurchatov (= 0.4.6)
|
|
58
58
|
net-ntp
|
|
59
59
|
net-ping
|
|
60
60
|
parallel
|
data/debian/changelog
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
riemann-client (1:0.4.6) stable; urgency=low
|
|
2
|
+
|
|
3
|
+
* --test-plugin improve.
|
|
4
|
+
|
|
5
|
+
-- Undev DevOps Team <devops@undev.ru> Tue, 27 Jan 2015 16:17:51 +0300
|
|
6
|
+
|
|
7
|
+
riemann-client (1:0.4.5) stable; urgency=low
|
|
8
|
+
|
|
9
|
+
* Http body size limit.
|
|
10
|
+
|
|
11
|
+
-- Undev DevOps Team <devops@undev.ru> Wed, 21 Jan 2015 13:45:05 +0300
|
|
12
|
+
|
|
1
13
|
riemann-client (1:0.4.4) stable; urgency=low
|
|
2
14
|
|
|
3
15
|
* Fix set time in event.
|
|
@@ -9,7 +9,8 @@ module Kurchatov
|
|
|
9
9
|
def self.load_test_plugin(plugin_path, config_file)
|
|
10
10
|
config = File.exists?(config_file) ? YAML.load_file(config_file) : {}
|
|
11
11
|
plugin = Kurchatov::Plugins::DSL.load_riemann_plugin(plugin_path)
|
|
12
|
-
plugin.plugin.merge!(config[plugin.name])
|
|
12
|
+
plugin.plugin.merge!(config[plugin.name]) if (!config.nil? && !config[plugin.name].nil?)
|
|
13
|
+
plugin.instance_eval(&plugin.required)
|
|
13
14
|
[plugin]
|
|
14
15
|
end
|
|
15
16
|
|
data/lib/kurchatov/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kurchatov
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vasiliev Dmitry
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-01-
|
|
11
|
+
date: 2015-01-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: beefcake
|