Repository: spark Updated Branches: refs/heads/master 00074b577 -> 6873430cb
[SPARK-19009][DOC] Add streaming rest api doc ## What changes were proposed in this pull request? add streaming rest api doc related to pr #16253 cc saturday-shi srowen ## How was this patch tested? Author: uncleGen <[email protected]> Closes #16414 from uncleGen/SPARK-19009. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/6873430c Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/6873430c Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/6873430c Branch: refs/heads/master Commit: 6873430cb5ec0096991a02d4e01266945e79ebb9 Parents: 00074b5 Author: uncleGen <[email protected]> Authored: Wed Jan 4 15:14:51 2017 -0800 Committer: Marcelo Vanzin <[email protected]> Committed: Wed Jan 4 15:14:51 2017 -0800 ---------------------------------------------------------------------- docs/monitoring.md | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/6873430c/docs/monitoring.md ---------------------------------------------------------------------- diff --git a/docs/monitoring.md b/docs/monitoring.md index 7a1de52..37e50a5 100644 --- a/docs/monitoring.md +++ b/docs/monitoring.md @@ -276,7 +276,7 @@ can be identified by their `[attempt-id]`. In the API listed below, when running </tr> <tr> <td><code>/applications/[app-id]/stages/[stage-id]/[stage-attempt-id]</code></td> - <td>Details for the given stage attempt</td> + <td>Details for the given stage attempt.</td> </tr> <tr> <td><code>/applications/[app-id]/stages/[stage-id]/[stage-attempt-id]/taskSummary</code></td> @@ -321,6 +321,34 @@ can be identified by their `[attempt-id]`. In the API listed below, when running <td><code>/applications/[base-app-id]/[attempt-id]/logs</code></td> <td>Download the event logs for a specific application attempt as a zip file.</td> </tr> + <tr> + <td><code>/applications/[app-id]/streaming/statistics</code></td> + <td>Statistics for the streaming context.</td> + </tr> + <tr> + <td><code>/applications/[app-id]/streaming/receivers</code></td> + <td>A list of all streaming receivers.</td> + </tr> + <tr> + <td><code>/applications/[app-id]/streaming/receivers/[stream-id]</code></td> + <td>Details of the given receiver.</td> + </tr> + <tr> + <td><code>/applications/[app-id]/streaming/batches</code></td> + <td>A list of all retained batches.</td> + </tr> + <tr> + <td><code>/applications/[app-id]/streaming/batches/[batch-id]</code></td> + <td>Details of the given batch.</td> + </tr> + <tr> + <td><code>/applications/[app-id]/streaming/batches/[batch-id]/operations</code></td> + <td>A list of all output operations of the given batch.</td> + </tr> + <tr> + <td><code>/applications/[app-id]/streaming/batches/[batch-id]/operations/[outputOp-id]</code></td> + <td>Details of the given operation and given batch.</td> + </tr> </table> The number of jobs and stages which can retrieved is constrained by the same retention --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
