Skip to content

Commit

Permalink
[SPARK-45500][CORE][WEBUI] Show the number of abnormally completed dr…
Browse files Browse the repository at this point in the history
…ivers in MasterPage
  • Loading branch information
dongjoon-hyun committed Oct 11, 2023
1 parent 2784349 commit 71036f9
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,11 @@ private[ui] class MasterPage(parent: MasterWebUI) extends WebUIPage("") {
<li><strong>Drivers:</strong>
{state.activeDrivers.length} Running
({state.activeDrivers.count(_.state == DriverState.SUBMITTED)} Waiting),
{state.completedDrivers.length} Completed </li>
{state.completedDrivers.length} Completed
({state.completedDrivers.count(_.state == DriverState.KILLED)} Killed,
{state.completedDrivers.count(_.state == DriverState.FAILED)} Failed,
{state.completedDrivers.count(_.state == DriverState.ERROR)} Error)
</li>
<li><strong>Status:</strong> {state.status}</li>
</ul>
</div>
Expand Down

0 comments on commit 71036f9

Please sign in to comment.