Sha256: f79e7f242e78984760d0c7cb686fab65821718c70359ea5dc75bcc33d407839c

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 KB

Contents

module God
  module System
  
    class Process
      def initialize(pid)
        @pid = pid.to_i
      end
      
      # Return true if this process is running, false otherwise
      def exists?
        !!::Process.kill(0, @pid) rescue false
      end
      
      # Memory usage in kilobytes (resident set size)
      def memory
        ps_int('rss')
      end
      
      # Percentage memory usage
      def percent_memory
        ps_float('%mem')
      end
      
      # Percentage CPU usage
      def percent_cpu
        ps_float('%cpu')
      end
      
      # Seconds of CPU time (accumulated cpu time, user + system)
      def cpu_time
        time_string_to_seconds(ps_string('time'))
      end
      
      private
      
      def ps_int(keyword)
        `ps -o #{keyword}= -p #{@pid}`.to_i
      end
      
      def ps_float(keyword)
        `ps -o #{keyword}= -p #{@pid}`.to_f
      end
      
      def ps_string(keyword)
        `ps -o #{keyword}= -p #{@pid}`.strip
      end
      
      def time_string_to_seconds(text)
        _, minutes, seconds, useconds = *text.match(/(\d+):(\d{2}).(\d{2})/)
        (minutes.to_i * 60) + seconds.to_i
      end
    end
  
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
god-0.7.3 lib/god/system/process.rb
god-0.7.5 lib/god/system/process.rb