aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/twirl/workerui/executors_table.scala.html
blob: 327a2399c739a68e8b44f8f1dae22971d58c9841 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@(executors: List[spark.deploy.worker.ExecutorRunner])

<table class="table table-bordered table-striped table-condensed sortable">
  <thead>
    <tr>
      <th>ExecutorID</th>
      <th>Cores</th>
      <th>Memory</th>
      <th>Job Details</th>
      <th>Logs</th>
    </tr>
  </thead>
  <tbody>
    @for(e <- executors) {
      @executor_row(e)
    }
  </tbody>
</table>