Skip to content

Commit 1ecb732

Browse files
committed
Put metric first in title (column heading)
1 parent 6042d6a commit 1ecb732

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

PerfTools/AllocMonitor/scripts/edmModuleAllocJsonToCircles.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,32 +31,32 @@ def formatToCircles(moduleTransitions):
3131
{
3232
"name": f"added {transitionType}",
3333
"description": f"{transitionType}: added memory (average)",
34-
"title": f"Amount of memory added to the process at the end of the {transitionType} transition",
34+
"title": f"{transitionType}: Amount of memory added to the process at the end of the transition",
3535
"unit": "kB"
3636
},
3737
{
3838

3939
"name": f"nAlloc {transitionType}",
4040
"description": f"{transitionType}: num allocs (average)",
41-
"title": f"Number of allocations during the {transitionType} transition",
41+
"title": f"{transitionType}: Number of allocations during the transition",
4242
"unit": ""
4343
},
4444
{
4545
"name": f"nDealloc {transitionType}",
4646
"description": f"{transitionType}: num deallocs (average)",
47-
"title": f"Number of deallocations during the {transitionType} transition",
47+
"title": f"{transitionType}: Number of deallocations during the transition",
4848
"unit": ""
4949
},
5050
{
5151
"name": f"maxTemp {transitionType}",
5252
"description": f"{transitionType}: maximum temporary memory (average)",
53-
"title": f"Maximum temporary memory held during the {transitionType} transition",
53+
"title": f"{transitionType}: Maximum temporary memory during the transition",
5454
"unit": "kB"
5555
},
5656
{
5757
"name": f"max1Alloc {transitionType}",
5858
"description": f"{transitionType}: largest single allocation (average)",
59-
"title": f"Largest single allocation held during the {transitionType} transition",
59+
"title": f"{transitionType}: Largest single allocation during the transition",
6060
"unit": "kB"
6161
},
6262
]

0 commit comments

Comments
 (0)