aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/twirl/masterui/worker_table.scala.html
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/twirl/masterui/worker_table.scala.html')
-rw-r--r--core/src/main/twirl/masterui/worker_table.scala.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/core/src/main/twirl/masterui/worker_table.scala.html b/core/src/main/twirl/masterui/worker_table.scala.html
new file mode 100644
index 0000000000..2028842297
--- /dev/null
+++ b/core/src/main/twirl/masterui/worker_table.scala.html
@@ -0,0 +1,17 @@
+@(workers: List[spark.deploy.master.WorkerInfo])
+
+<table class="table table-bordered table-striped table-condensed sortable">
+ <thead>
+ <tr>
+ <th>ID</th>
+ <th>Address</th>
+ <th>Cores</th>
+ <th>Memory</th>
+ </tr>
+ </thead>
+ <tbody>
+ @for(w <- workers) {
+ @worker_row(w)
+ }
+ </tbody>
+</table> \ No newline at end of file