aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/twirl/workerui/executors_table.scala.html
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/twirl/workerui/executors_table.scala.html')
-rw-r--r--core/src/main/twirl/workerui/executors_table.scala.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/core/src/main/twirl/workerui/executors_table.scala.html b/core/src/main/twirl/workerui/executors_table.scala.html
new file mode 100644
index 0000000000..327a2399c7
--- /dev/null
+++ b/core/src/main/twirl/workerui/executors_table.scala.html
@@ -0,0 +1,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> \ No newline at end of file