aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/twirl/masterui/executor_row.scala.html
diff options
context:
space:
mode:
authorDenny <dennybritz@gmail.com>2012-07-31 08:39:24 -0700
committerDenny <dennybritz@gmail.com>2012-08-01 11:01:09 -0700
commit7a295fee9641e7b9480dd5cb520afe45039ffbe0 (patch)
treeb89a6bf716cdbc0821267ab070c1f9761fff6adb /core/src/main/twirl/masterui/executor_row.scala.html
parentf471c82558347216985a8b7015309c4cce099cc4 (diff)
downloadspark-7a295fee9641e7b9480dd5cb520afe45039ffbe0.tar.gz
spark-7a295fee9641e7b9480dd5cb520afe45039ffbe0.tar.bz2
spark-7a295fee9641e7b9480dd5cb520afe45039ffbe0.zip
Spark WebUI Implementation.
Diffstat (limited to 'core/src/main/twirl/masterui/executor_row.scala.html')
-rw-r--r--core/src/main/twirl/masterui/executor_row.scala.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/core/src/main/twirl/masterui/executor_row.scala.html b/core/src/main/twirl/masterui/executor_row.scala.html
new file mode 100644
index 0000000000..784d692fc2
--- /dev/null
+++ b/core/src/main/twirl/masterui/executor_row.scala.html
@@ -0,0 +1,15 @@
+@(executor: spark.deploy.master.ExecutorInfo)
+
+<tr>
+ <td>@executor.id</td>
+ <td>
+ <a href="@executor.worker.webUiAddress">@executor.worker.id</href>
+ </td>
+ <td>@executor.cores</td>
+ <td>@executor.memory</td>
+ <td>@executor.state</td>
+ <td>
+ <a href="@(executor.worker.webUiAddress)/log?jobId=@(executor.job.id)&executorId=@(executor.id)&logType=stdout">stdout</a>
+ <a href="@(executor.worker.webUiAddress)/log?jobId=@(executor.job.id)&executorId=@(executor.id)&logType=stderr">stderr</a>
+ </td>
+</tr> \ No newline at end of file