/usr/share/dstat/dstat_top_cputime.py is in dstat 0.7.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | ### Authority: dag@wieers.com
### For more information, see:
### http://eaglet.rain.com/rick/linux/schedstat/
class dstat_plugin(dstat):
"""
Name and total amount of CPU time consumed in milliseconds of the process
that has the highest total amount of cputime for the measured timeframe.
On a system with one CPU and one core, the total cputime is 1000ms. On a
system with two cores the total cputime is 2000ms.
"""
def __init__(self):
self.name = 'highest total'
self.vars = ('cputime process',)
self.type = 's'
self.width = 17
self.scale = 0
self.pidset1 = {}
def check(self):
if not os.access('/proc/self/schedstat', os.R_OK):
raise Exception, 'Kernel has no scheduler statistics, use at least 2.6.12'
def extract(self):
self.output = ''
self.pidset2 = {}
self.val['result'] = 0
for pid in proc_pidlist():
try:
### Reset values
if not self.pidset1.has_key(pid):
self.pidset1[pid] = {'run_ticks': 0}
### Extract name
name = proc_splitline('/proc/%s/stat' % pid)[1][1:-1]
### Extract counters
l = proc_splitline('/proc/%s/schedstat' % pid)
except IOError:
continue
except IndexError:
continue
if len(l) != 3: continue
self.pidset2[pid] = {'run_ticks': long(l[0])}
totrun = (self.pidset2[pid]['run_ticks'] - self.pidset1[pid]['run_ticks']) * 1.0 / elapsed
### Get the process that spends the most jiffies
if totrun > self.val['result']:
self.val['result'] = totrun
self.val['pid'] = pid
self.val['name'] = getnamebypid(pid, name)
if step == op.delay:
self.pidset1 = self.pidset2
if self.val['result'] != 0.0:
self.output = '%-*s%s' % (self.width-4, self.val['name'][0:self.width-4], cprint(self.val['result'], 'd', 4, 100))
### Debug (show PID)
# self.output = '%*s %-*s' % (5, self.val['pid'], self.width-6, self.val['name'])
def showcsv(self):
return '%s / %.4f' % (self.val['name'], self.val['result'])
# vim:ts=4:sw=4:et
|