You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/features/Overview/LiveTileMetrics/consts.ts
+11-4Lines changed: 11 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ export const metricGroups: {
45
45
uniqueName: "Name",
46
46
description:
47
47
"The name and index of each tile. A tile represents a sandboxed process or individual thread that communicates with other tiles using message passing queues.",
48
-
headerColWidth: 70,
48
+
headerColWidth: 85,
49
49
},
50
50
],
51
51
},
@@ -60,9 +60,16 @@ export const metricGroups: {
60
60
headerColAlign: "right",
61
61
},
62
62
{
63
-
uniqueName: "Heartbeat",
63
+
uniqueName: "Hbt",
64
64
description:
65
65
"Liveness indicator based on a periodic heartbeat timestamp written by tiles to a chunk of shared memory.",
66
+
headerColWidth: 50,
67
+
headerColAlign: "right",
68
+
},
69
+
{
70
+
uniqueName: "Priority",
71
+
description:
72
+
"The tile's scheduling priority. Floating tiles run on the Linux scheduler; others are pinned to a core. Startup tiles go away shortly after boot. Critical tiles never share a hyperthread pair.",
66
73
headerColWidth: 70,
67
74
headerColAlign: "right",
68
75
},
@@ -89,12 +96,12 @@ export const metricGroups: {
89
96
uniqueName: "Utilization",
90
97
description:
91
98
"Visualized the percentage of the tile's CPU time spent doing useful work. Time spent in a context switch is not included.",
92
-
headerColWidth: 150,
99
+
headerColWidth: 140,
93
100
},
94
101
{
95
102
uniqueName: "History (1m)",
96
103
description: "A historical, low-pass-filtered view of CPU utilization.",
0 commit comments