From bbbaf6e2bd9c0e2aa2070bd65c9e2f8033ba2104 Mon Sep 17 00:00:00 2001 From: Alaettin Serhan Mete <alaettin.serhan.mete@cern.ch> Date: Fri, 22 Oct 2021 11:12:52 +0200 Subject: [PATCH] Truncate unwieldy component names in the plots --- .../PerformanceMonitoring/PerfMonAna/bin/perfmonmt-plotter.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Control/PerformanceMonitoring/PerfMonAna/bin/perfmonmt-plotter.py b/Control/PerformanceMonitoring/PerfMonAna/bin/perfmonmt-plotter.py index 33de5db30b3b..a2ebbde45f14 100755 --- a/Control/PerformanceMonitoring/PerfMonAna/bin/perfmonmt-plotter.py +++ b/Control/PerformanceMonitoring/PerfMonAna/bin/perfmonmt-plotter.py @@ -193,6 +193,10 @@ def plotComponentLevel(componentLevelData, compCountPerPlot): if vmem < 0 or malloc < 0: continue + # Truncate unwieldy component names + if len(comp) > 50: + comp = f"{comp[:20]}[...]{comp[-20:]}" + compNames.append(comp + " [" + str(count) + "]") vmemVals.append(vmem) cpuTimeVals.append(cpuTime) -- GitLab