Sha256: c95b48c35f62f041b811af42a694d879f111aa208245a90845baf2cab04f4bd7
Contents?: true
Size: 657 Bytes
Versions: 47
Compression:
Stored size: 657 Bytes
Contents
module God module Conditions class DiskUsage < PollCondition attr_accessor :above, :mount_point def initialize super self.above = nil self.mount_point = nil end def valid? valid = true valid &= complain("Attribute 'mount_point' must be specified", self) if self.mount_point.nil? valid &= complain("Attribute 'above' must be specified", self) if self.above.nil? valid end def test usage = `df | grep -i " #{self.mount_point}$" | awk '{print $5}' | sed 's/%//'` usage.to_i > self.above end end end end
Version data entries
47 entries across 47 versions & 18 rubygems