Skip to content
Snippets Groups Projects
Commit fdc2aa49 authored by jerryshao's avatar jerryshao Committed by Tathagata Das
Browse files

[SPARK-5028][Streaming]Add total received and processed records metrics to Streaming UI

This is a follow-up work of [SPARK-4537](https://issues.apache.org/jira/browse/SPARK-4537). Adding total received records and processed records metrics back to UI.

![screenshot](https://dl.dropboxusercontent.com/u/19230832/screenshot.png)

Author: jerryshao <saisai.shao@intel.com>

Closes #3852 from jerryshao/SPARK-5028 and squashes the following commits:

c8c4877 [jerryshao] Add total received and processed metrics to Streaming UI
parent 3610d3c6
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,12 @@ private[ui] class StreamingPage(parent: StreamingTab)
<li>
<strong>Waiting batches: </strong>{listener.numUnprocessedBatches}
</li>
<li>
<strong>Received records: </strong>{listener.numTotalReceivedRecords}
</li>
<li>
<strong>Processed records: </strong>{listener.numTotalProcessedRecords}
</li>
</ul>
}
......
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