riemann-babbler 2.5.5 → 2.5.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/lib/riemann/babbler/plugins/disk.rb +1 -1
- data/lib/riemann/babbler/version.rb +1 -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: 8e4db6d95df27937c8365153f77b9ee1321fe73b
|
4
|
+
data.tar.gz: 9fd3f4b107ae62e7771ae4cb260defdda3e656f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7d5d52deb805e4f54444d740cb036f14633f6cd415ee9b28afe372cb127e6140313987410964cf8f0db328f56801acf2a4875521961310f2f7a0c150404e6bd
|
7
|
+
data.tar.gz: e056627804734fdb45f6f240818a9cc524e7a299c66e771e14bb7ae2750dc371a92a94184726e953af323aa5433c5cb07b95ed526151757fb85060249c2bd642
|
@@ -67,7 +67,7 @@ class Riemann::Babbler::Plugin::Disk < Riemann::Babbler::Plugin
|
|
67
67
|
disk << { :service => plugin.service + " #{human_point} abs total", :description => "Disk space #{point}, B", :metric => point_stat.blocks * point_stat.block_size, :state => 'ok' }
|
68
68
|
end
|
69
69
|
get_monit_points_for_fstab.each do |point|
|
70
|
-
disk << { :service => plugin.service + " #{point} fstab entry", :description => "Mount point #{point} not matched in /etc/fstab", :state => 'critical' } unless fstab.match(
|
70
|
+
disk << { :service => plugin.service + " #{point} fstab entry", :description => "Mount point #{point} not matched in /etc/fstab", :state => 'critical' } unless fstab.match(/#{point}\s/)
|
71
71
|
end
|
72
72
|
disk
|
73
73
|
end
|