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

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