Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

Commit

Permalink
Fix display of node metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
littlezhou committed Oct 23, 2018
1 parent f204b79 commit 91f7908
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h4>No node is running</h4>
</thead>
<tbody>
<tr ng-repeat="node in nodes">
<td>{{node.nodeInfo.id}} (Pending Schedule: {{node.numPendingSchedule}} Pending Dispatch: {{node.numPendingDispatch}})</td>
<td>{{node.nodeInfo.id + (node.nodeInfo.executorType == "LOCAL" ? " (PendingSchedule:" + node.numPendingSchedule + ", PendingDispatch:" + node.numPendingDispatch + ")" : "")}}</td>
<td>{{node.registTime}}</td>
<td>{{node.numExecutors}}</td>
<td>{{node.cmdletsExecuted}}</td>
Expand Down

0 comments on commit 91f7908

Please sign in to comment.