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

@import spark.Utils

<tr>
  <td>@executor.execId</td>
  <td>@executor.cores</td>
  <td>@Utils.memoryMegabytesToString(executor.memory)</td>
  <td>
    <ul class="unstyled">
      <li><strong>ID:</strong> @executor.appId</li>
      <li><strong>Name:</strong> @executor.appDesc.name</li>
      <li><strong>User:</strong> @executor.appDesc.user</li>
    </ul>
  </td>
  <td>
    <a href="log?appId=@(executor.appId)&executorId=@(executor.execId)&logType=stdout">stdout</a>
    <a href="log?appId=@(executor.appId)&executorId=@(executor.execId)&logType=stderr">stderr</a>
  </td>
</tr>