aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/twirl/workerui/executor_row.scala.html
blob: db3d33d74e33d31ad694dae5a335320926cdec81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@(executor: spark.deploy.worker.ExecutorRunner)

<tr>
  <td>@executor.execId</td>
  <td>@executor.cores</td>
  <td>@executor.memory</td>
  <td>
    <ul class="unstyled">
      <li><strong>ID:</strong> @executor.jobId</li>
      <li><strong>Name:</strong> @executor.jobDesc.name</li>
      <li><strong>User:</strong> @executor.jobDesc.user</li>
      <li><strong>Cores:</strong> @executor.jobDesc.cores </li>
      <li><strong>Memory per Slave:</strong> @executor.jobDesc.memoryPerSlave</li>
      <li><strong>Command:</strong> @executor.jobDesc.command</li>
    </ul>
  </td>
  <td>
    <a href="log?jobId=@(executor.jobId)&executorId=@(executor.execId)&logType=stdout">stdout</a>
    <a href="log?jobId=@(executor.jobId)&executorId=@(executor.execId)&logType=stderr">stderr</a>
  </td>
</tr>