debuggers.hg
changeset 13757:aff5b538fcdf
Added uuid to the PIF_metrics record.
Signed-off-by: Ewan Mellor <ewan@xensource.com>
Signed-off-by: Ewan Mellor <ewan@xensource.com>
author | Ewan Mellor <ewan@xensource.com> |
---|---|
date | Tue Jan 30 13:52:03 2007 +0000 (2007-01-30) |
parents | a9912f2e472b |
children | bb34cc5784c1 |
files | tools/python/xen/xend/XendPIFMetrics.py |
line diff
1.1 --- a/tools/python/xen/xend/XendPIFMetrics.py Tue Jan 30 13:51:45 2007 +0000 1.2 +++ b/tools/python/xen/xend/XendPIFMetrics.py Tue Jan 30 13:52:03 2007 +0000 1.3 @@ -40,7 +40,8 @@ class XendPIFMetrics: 1.4 return 0.0 1.5 1.6 def get_record(self): 1.7 - return {'PIF' : self.pif.uuid, 1.8 + return {'uuid' : self.uuid, 1.9 + 'PIF' : self.pif.uuid, 1.10 'io_read_kbs' : self.get_io_read_kbs(), 1.11 'io_write_kbs' : self.get_io_write_kbs() 1.12 }