Zhou Zheng Sheng has posted comments on this change.

Change subject: Skip monitoring the usage of tmpfs filesystems in diskStats
......................................................................


Patch Set 3: (1 inline comment)

....................................................
File vdsm/sampling.py
Line 160:         for p in self.MONITORED_PATHS:
Line 161:             rc, out, _ = utils.execCmd(['stat', '--file-system', 
'--format=%T',
Line 162:                                         p])
Line 163:             if rc == 0 and out[0] == 'tmpfs':
Line 164:                 continue
I think this piece of code can be put in __init__():

self.MONITORED_PATHS = filter(
    lambda p: utils.execCmd(
        ['stat', '--file-system', '--format=%T', p]) != (0, ['tmpfs'], []),
    self.MONITORED_PATHS)

or

self.MONITORED_PATHS = [
    p for p in MONITORED_PATHS
    if utils.execCmd(
        ['stat', '--file-system', '--format=%T', p]) != (0, ['tmpfs'], [])]

Then _getDiskStats() does not have to stat the file system every time.
Line 165: 
Line 166:             free = 0
Line 167:             try:
Line 168:                 stat = os.statvfs(p)


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

Gerrit-MessageType: comment
Gerrit-Change-Id: Idb0a4ae2cf7ceb6297e348d9e90c166373461ca1
Gerrit-PatchSet: 3
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Mark Wu <[email protected]>
Gerrit-Reviewer: Dan Kenigsberg <[email protected]>
Gerrit-Reviewer: Deepak C Shetty <[email protected]>
Gerrit-Reviewer: Mark Wu <[email protected]>
Gerrit-Reviewer: Zhou Zheng Sheng <[email protected]>
Gerrit-Reviewer: oVirt Jenkins CI Server
_______________________________________________
vdsm-patches mailing list
[email protected]
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches

Reply via email to