aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/twirl/workerui/executor_row.scala.html
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/twirl/workerui/executor_row.scala.html')
-rw-r--r--core/src/main/twirl/workerui/executor_row.scala.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/core/src/main/twirl/workerui/executor_row.scala.html b/core/src/main/twirl/workerui/executor_row.scala.html
new file mode 100644
index 0000000000..db3d33d74e
--- /dev/null
+++ b/core/src/main/twirl/workerui/executor_row.scala.html
@@ -0,0 +1,21 @@
+@(executor: spark.deploy.worker.ExecutorRunner)
+
+<tr>
+ <td>@executor.execId</td>
+ <td>@executor.cores</td>
+ <td>@executor.memory</td>
+ <td>
+ <ul class="unstyled">
+ <li><strong>ID:</strong> @executor.jobId</li>
+ <li><strong>Name:</strong> @executor.jobDesc.name</li>
+ <li><strong>User:</strong> @executor.jobDesc.user</li>
+ <li><strong>Cores:</strong> @executor.jobDesc.cores </li>
+ <li><strong>Memory per Slave:</strong> @executor.jobDesc.memoryPerSlave</li>
+ <li><strong>Command:</strong> @executor.jobDesc.command</li>
+ </ul>
+ </td>
+ <td>
+ <a href="log?jobId=@(executor.jobId)&executorId=@(executor.execId)&logType=stdout">stdout</a>
+ <a href="log?jobId=@(executor.jobId)&executorId=@(executor.execId)&logType=stderr">stderr</a>
+ </td>
+</tr> \ No newline at end of file