Use the updated field name in status when fetching process busyness info

This commit is contained in:
A.J. Beamon 2020-04-27 11:38:54 -07:00
parent cdeed25f63
commit 054d6bca65
1 changed files with 1 additions and 1 deletions

View File

@ -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) {