Use the updated field name in status when fetching process busyness info
This commit is contained in:
parent
cdeed25f63
commit
054d6bca65
|
@ -863,7 +863,7 @@ ACTOR static Future<JsonBuilderObject> processStatusFetcher(
|
|||
double networkMetricsElapsed = networkMetrics.getDouble("Elapsed");
|
||||
|
||||
try {
|
||||
double runLoopBusy = networkMetrics.getDouble("PriorityBusy1");
|
||||
double runLoopBusy = networkMetrics.getDouble("PriorityStarvedBelow1");
|
||||
statusObj["run_loop_busy"] = runLoopBusy / networkMetricsElapsed;
|
||||
}
|
||||
catch(Error &e) {
|
||||
|
|
Loading…
Reference in New Issue