diff options
Diffstat (limited to 'py/demo/Ice/metrics/Metrics.py')
-rwxr-xr-x | py/demo/Ice/metrics/Metrics.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/py/demo/Ice/metrics/Metrics.py b/py/demo/Ice/metrics/Metrics.py index 4c3a9b13e66..90104dc4840 100755 --- a/py/demo/Ice/metrics/Metrics.py +++ b/py/demo/Ice/metrics/Metrics.py @@ -72,6 +72,15 @@ maps = { ("replySize", "RepSz", '>', 5), ("averageLifetime", "Avg (ms)", '>', 8) ], + "Collocated" : [ + ("id", "Invocations", '>', 39), + ("current", "#", '>', 3), + ("total", "Total", '>', 5), + ("", "", '>', 5), + ("size", "Sz", '>', 5), + ("replySize", "RepSz", '>', 5), + ("averageLifetime", "Avg (ms)", '>', 8) + ], "Session" : [ ("id", "Sessions", '<', 15), ("current", "#", '>', 3), @@ -180,6 +189,8 @@ def printMetricsMap(admin, viewName, mapName, map): printMetrics(mapName, metricsField(o)) for so in o.remotes: printMetrics("Remote", metricsField(so)) + for co in o.collocated: + printMetrics("Collocated", metricsField(so)) # # Print the table footer. |