Skip to content
Snippets Groups Projects
Commit b91a218c authored by Matei Zaharia's avatar Matei Zaharia
Browse files

Cosmetic fixes to web UI

parent a44a7b12
No related branches found
No related tags found
No related merge requests found
...@@ -38,8 +38,8 @@ private[spark] class IndexPage(parent: MasterWebUI) { ...@@ -38,8 +38,8 @@ private[spark] class IndexPage(parent: MasterWebUI) {
<div class="row"> <div class="row">
<div class="span12"> <div class="span12">
<ul class="unstyled"> <ul class="unstyled">
<li><strong>URL:</strong>{state.uri}</li> <li><strong>URL:</strong> {state.uri}</li>
<li><strong>Workers:</strong>{state.workers.size}</li> <li><strong>Workers:</strong> {state.workers.size}</li>
<li><strong>Cores:</strong> {state.workers.map(_.cores).sum} Total, <li><strong>Cores:</strong> {state.workers.map(_.cores).sum} Total,
{state.workers.map(_.coresUsed).sum} Used</li> {state.workers.map(_.coresUsed).sum} Used</li>
<li><strong>Memory:</strong> <li><strong>Memory:</strong>
......
...@@ -29,10 +29,10 @@ private[spark] class IndexPage(parent: JobProgressUI) { ...@@ -29,10 +29,10 @@ private[spark] class IndexPage(parent: JobProgressUI) {
<th>Stage Id</th> <th>Stage Id</th>
<th>Origin</th> <th>Origin</th>
<th>Submitted</th> <th>Submitted</th>
<td>Duration</td> <th>Duration</th>
<td colspan="2">Tasks: Complete/Total</td> <th colspan="2">Tasks: Complete/Total</th>
<td>Shuffle Activity</td> <th>Shuffle Activity</th>
<td>Stored RDD</td> <th>Stored RDD</th>
</thead> </thead>
<tbody> <tbody>
{rows.map(r => makeRow(r))} {rows.map(r => makeRow(r))}
......
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