aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/twirl/masterui/executor_row.scala.html
blob: 784d692fc2f91c2faa964ed76c41dfce91876e65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@(executor: spark.deploy.master.ExecutorInfo)

<tr>
  <td>@executor.id</td>
  <td>
    <a href="@executor.worker.webUiAddress">@executor.worker.id</href>
  </td>
  <td>@executor.cores</td>
  <td>@executor.memory</td>
  <td>@executor.state</td>
  <td>
    <a href="@(executor.worker.webUiAddress)/log?jobId=@(executor.job.id)&executorId=@(executor.id)&logType=stdout">stdout</a>
    <a href="@(executor.worker.webUiAddress)/log?jobId=@(executor.job.id)&executorId=@(executor.id)&logType=stderr">stderr</a>
  </td>
</tr>