Sha256: 655548fe22ea60de9cbc90867f84182a0cadbba1a5c2a5f304dcd87a83db6c39

Contents?: true

Size: 1.09 KB

Versions: 1

Compression:

Stored size: 1.09 KB

Contents

module God
  module Conditions
    
    class CpuUsage < PollCondition
      attr_accessor :pid_file, :above, :times
    
      def initialize
        super
        self.above = nil
        self.times = [1, 1]
      end
      
      def prepare
        if self.times.kind_of?(Integer)
          self.times = [self.times, self.times]
        end
        
        @timeline = Timeline.new(self.times[1])
      end
    
      def valid?
        valid = true
        valid &= complain("You must specify the 'pid_file' attribute for :memory_usage") if self.pid_file.nil?
        valid &= complain("You must specify the 'above' attribute for :memory_usage") if self.above.nil?
        valid
      end
    
      def test
        return false unless File.exist?(self.pid_file)
        
        pid = File.open(self.pid_file).read.strip
        process = System::Process.new(pid)
        @timeline.push(process.percent_cpu)
        if @timeline.select { |x| x > self.above }.size < self.times.first
          return true
        else
          @timeline.clear
          return false
        end
      end
    end
    
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
god-0.1.0 lib/god/conditions/cpu_usage.rb