Change in vdsm[master]: Add qemu's memory usage to VM statistics.

wudxw at linux.vnet.ibm.com wudxw at linux.vnet.ibm.com
Wed Nov 7 08:53:03 UTC 2012


Mark Wu has posted comments on this change.

Change subject: Add qemu's memory usage to VM statistics.
......................................................................


Patch Set 2: I would prefer that you didn't submit this

(2 inline comments)

....................................................
Commit Message
Line 6: 
Line 7: Add qemu's memory usage to VM statistics.
Line 8: 
Line 9: Change-Id: Ibeb35759454c4a9b41e1303956267e93ca3545a0
Line 10: Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=799285
It seems it's not public.


....................................................
File vdsm/libvirtvm.py
Line 172:         return netSamples
Line 173: 
Line 174:     def _sampleMem(self):
Line 175:         memUsage = {}
Line 176:         for line in open('/proc/%d/status' %(self.conf['pid'])):
using 'with open('/proc/%d/status' %(self.conf['pid'])) as f:'  more pythonic?

and self.conf['pid'] is updated with actual pid after the vmstats thread starts. So probably we need update pid earlier.
Line 177:             var, value = line.strip().split()[0:2]
Line 178:             if var in ('VmSize:', 'VmRSS:', 'VmData:'):
Line 179:                 memUsage[var[:-1]] = long(value)
Line 180:         return memUsage


--
To view, visit http://gerrit.ovirt.org/9006
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Ibeb35759454c4a9b41e1303956267e93ca3545a0
Gerrit-PatchSet: 2
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Gal Hammer <ghammer at redhat.com>
Gerrit-Reviewer: Gal Hammer <ghammer at redhat.com>
Gerrit-Reviewer: Mark Wu <wudxw at linux.vnet.ibm.com>
Gerrit-Reviewer: Michal Skrivanek <michal.skrivanek at redhat.com>
Gerrit-Reviewer: Royce Lv <lvroyce at linux.vnet.ibm.com>
Gerrit-Reviewer: ShaoHe Feng <shaohef at linux.vnet.ibm.com>


More information about the vdsm-patches mailing list