Skip to content
Snippets Groups Projects
Commit 3f1f9744 authored by Kousuke Saruta's avatar Kousuke Saruta Committed by Andrew Or
Browse files

[SPARK-3564][WebUI] Display App ID on HistoryPage


Author: Kousuke Saruta <sarutak@oss.nttdata.co.jp>

Closes #2424 from sarutak/display-appid-on-webui and squashes the following commits:

417fe90 [Kousuke Saruta] Added "App ID column" to HistoryPage

(cherry picked from commit 6688a266)
Signed-off-by: default avatarAndrew Or <andrewor14@gmail.com>
parent 0690410e
No related branches found
No related tags found
No related merge requests found
...@@ -67,6 +67,7 @@ private[spark] class HistoryPage(parent: HistoryServer) extends WebUIPage("") { ...@@ -67,6 +67,7 @@ private[spark] class HistoryPage(parent: HistoryServer) extends WebUIPage("") {
} }
private val appHeader = Seq( private val appHeader = Seq(
"App ID",
"App Name", "App Name",
"Started", "Started",
"Completed", "Completed",
...@@ -81,7 +82,8 @@ private[spark] class HistoryPage(parent: HistoryServer) extends WebUIPage("") { ...@@ -81,7 +82,8 @@ private[spark] class HistoryPage(parent: HistoryServer) extends WebUIPage("") {
val duration = UIUtils.formatDuration(info.endTime - info.startTime) val duration = UIUtils.formatDuration(info.endTime - info.startTime)
val lastUpdated = UIUtils.formatDate(info.lastUpdated) val lastUpdated = UIUtils.formatDate(info.lastUpdated)
<tr> <tr>
<td><a href={uiAddress}>{info.name}</a></td> <td><a href={uiAddress}>{info.id}</a></td>
<td>{info.name}</td>
<td>{startTime}</td> <td>{startTime}</td>
<td>{endTime}</td> <td>{endTime}</td>
<td>{duration}</td> <td>{duration}</td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment