Skip to content

Commit 417fe90

Browse files
committed
Added "App ID column" to HistoryPage
1 parent 983609a commit 417fe90

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

core/src/main/scala/org/apache/spark/deploy/history/HistoryPage.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ private[spark] class HistoryPage(parent: HistoryServer) extends WebUIPage("") {
6767
}
6868

6969
private val appHeader = Seq(
70+
"App ID",
7071
"App Name",
7172
"Started",
7273
"Completed",
@@ -81,7 +82,8 @@ private[spark] class HistoryPage(parent: HistoryServer) extends WebUIPage("") {
8182
val duration = UIUtils.formatDuration(info.endTime - info.startTime)
8283
val lastUpdated = UIUtils.formatDate(info.lastUpdated)
8384
<tr>
84-
<td><a href={uiAddress}>{info.name}</a></td>
85+
<td><a href={uiAddress}>{info.id}</a></td>
86+
<td>{info.name}</td>
8587
<td>{startTime}</td>
8688
<td>{endTime}</td>
8789
<td>{duration}</td>

0 commit comments

Comments
 (0)