Sha256: 530a1de74204524f95a26e616ca9aaec7c282226e93ae4c65b128afcf7300cb8

Contents?: true

Size: 1.22 KB

Versions: 2

Compression:

Stored size: 1.22 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?
        cmd_name = RUBY_PLATFORM =~ /solaris/i ? "args" : "command"
        !ps_string(cmd_name).empty?
      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.2.0 lib/god/system/process.rb
god-0.1.0 lib/god/system/process.rb