icinga2 0.6.3 → 0.6.3.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/lib/icinga2.rb +1 -0
- data/lib/icinga2/version.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 10c0360bbd722598fce168aa8668253373d71727
|
|
4
|
+
data.tar.gz: fbadc4b786f85b253dfb328c56271942828846da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ab8a732581ba8ab06da0cd3ce056f551ed7266229a97be27de41ecd4bd9d8aad88de73a5d0d4a08c55e0997de666a655cec9cc6b91d5038fd507cc1854a21db
|
|
7
|
+
data.tar.gz: 9839fbb6c4bbb8f4af130106240e0cd4985561c2b1dfdc0e743c9957d55fc4b4e02ffdb7e677a24076b5c0fdf6b6d531257e56ce46bf8e986f13904285b8befd
|
data/lib/icinga2.rb
CHANGED
|
@@ -46,6 +46,7 @@ module Icinga2
|
|
|
46
46
|
class Client
|
|
47
47
|
|
|
48
48
|
attr_reader :version, :revision, :node_name, :start_time, :uptime
|
|
49
|
+
attr_reader :avg_latency, :avg_execution_time
|
|
49
50
|
attr_reader :hosts_up, :hosts_down, :hosts_in_downtime, :hosts_acknowledged
|
|
50
51
|
attr_reader :hosts_all, :hosts_problems, :hosts_handled_warning_problems, :hosts_handled_critical_problems, :hosts_handled_unknown_problems
|
|
51
52
|
attr_reader :hosts_handled_problems, :hosts_down_adjusted
|
data/lib/icinga2/version.rb
CHANGED
|
@@ -12,10 +12,12 @@ module Icinga2
|
|
|
12
12
|
MINOR = 6
|
|
13
13
|
# tiny part of version
|
|
14
14
|
TINY = 3
|
|
15
|
+
# patch part
|
|
16
|
+
PATCH = 1
|
|
15
17
|
|
|
16
18
|
end
|
|
17
19
|
|
|
18
20
|
# Current version of gem.
|
|
19
|
-
VERSION = [Version::MAJOR, Version::MINOR, Version::TINY].compact * '.'
|
|
21
|
+
VERSION = [Version::MAJOR, Version::MINOR, Version::TINY, Version::PATCH].compact * '.'
|
|
20
22
|
|
|
21
23
|
end
|