Sha256: 16440e8a57acd804a0b20904e6d1fe1954be6d8f10b557576e25ecdbcc302771
Contents?: true
Size: 726 Bytes
Versions: 1
Compression:
Stored size: 726 Bytes
Contents
module Freyr class ProcessInfo attr_reader :pid, :rss, :vsz, :pcpu, :pmem, :ruser, :command def initialize pid @pid = pid end def ps return if !pid || pid.to_s.empty? info = `ps p #{pid} -o pid,rss,vsz,pmem,pcpu,ruser,command` match = info.match(/#{pid}\s+(\d+)\s+(\d+)\s+([\d\.]+)\s+([\d\.]+)\s+(\w+)\s+(.+)/) return unless match @rss = match[1].to_i @vsz = match[2].to_i @pmem = match[3].to_f @pcpu = match[4].to_f @ruser = match[5] @command = match[6] info end def mem_in_mb @rss/1024 end class << self def [] *args n = new(*args) n.ps ? n : nil end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
freyr-0.3.5 | lib/freyr/process_info.rb |