diff options
author | Ted Ross <tross@apache.org> | 2008-06-04 23:19:59 +0000 |
---|---|---|
committer | Ted Ross <tross@apache.org> | 2008-06-04 23:19:59 +0000 |
commit | d1b4facf05605f0b70addb5c666a28f20562f514 (patch) | |
tree | e954b3dc1282c80b81ffb50b27f239cf14ff7b0f | |
parent | 5afbb19b7ceb60a694207b4c2da9f1378d9ec856 (diff) | |
download | qpid-python-d1b4facf05605f0b70addb5c666a28f20562f514.tar.gz |
Management cleanup - renamed config/inst elements to properties and statistics
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@663413 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | python/qpid/managementdata.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/qpid/managementdata.py b/python/qpid/managementdata.py index a0fa1ece64..d755057e1f 100644 --- a/python/qpid/managementdata.py +++ b/python/qpid/managementdata.py @@ -467,7 +467,7 @@ class ManagementData: for eIdx in range (len (config)): key = config[eIdx][0] if key != "id": - row = ("config", key) + row = ("property", key) for id in ids: if timestamp == None or \ timestamp < self.tables[classKey][id][0][0]: @@ -480,7 +480,7 @@ class ManagementData: for eIdx in range (len (inst)): key = inst[eIdx][0] if key != "id": - row = ("inst", key) + row = ("statistic", key) for id in ids: (key, value) = self.tables[classKey][id][2][eIdx] row = row + (self.valueDisplay (classKey, key, value),) @@ -511,7 +511,7 @@ class ManagementData: row = (className, len (tuple[0]), len (tuple[1]), len (tuple[2]), len (tuple[3])) rows.append (row) self.disp.table ("Classes in Schema:", - ("Class", "ConfigElements", "InstElements", "Methods", "Events"), + ("Class", "Properties", "Statistics", "Methods", "Events"), rows) finally: self.lock.release () |