/usr/share/dstat/dstat_vz_ubc.py is in dstat 0.7.2-4.
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 | ### Author: Dag Wieers <dag@wieers.com>
class dstat_plugin(dstat):
def __init__(self):
self.nick = ('fcnt', )
self.type = 'd'
self.width = 5
self.scale = 1000
self.open('/proc/user_beancounters')
self.cols = 1 ### Is this correct ?
def check(self):
info(1, 'Module %s is still experimental.' % self.filename)
def discover(self, *list):
ret = []
for l in self.splitlines():
if len(l) < 7 or l[0] in ('uid', '0:'): continue
ret.append(l[0][0:-1])
ret.sort()
for item in list: ret.append(item)
return ret
def name(self):
ret = []
for name in self.vars:
if name == 'total':
ret.append('total failcnt')
else:
ret.append(name)
return ret
def vars(self):
ret = []
if not op.full:
list = ('total', )
else:
list = self.discover
for name in list:
if name in self.discover + ['total']:
ret.append(name)
return ret
def extract(self):
for name in self.vars + ['total']:
self.set2[name] = 0
for l in self.splitlines():
if len(l) < 6 or l[0] == 'uid':
continue
elif len(l) == 7:
name = l[0][0:-1]
if name in self.vars:
self.set2[name] = self.set2[name] + long(l[6])
self.set2['total'] = self.set2['total'] + long(l[6])
elif name == '0':
continue
else:
if name in self.vars:
self.set2[name] = self.set2[name] + long(l[5])
self.set2['total'] = self.set2['total'] + long(l[5])
for name in self.vars:
self.val[name] = (self.set2[name] - self.set1[name]) * 1.0 / elapsed
if step == op.delay:
self.set1.update(self.set2)
# vim:ts=4:sw=4:et
|