Repository: flink Updated Branches: refs/heads/master 0ae7364bd -> a2d1d084b
[FLINK-8593][metrics] Update latency metric docs This closes #5484. Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/a2d1d084 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/a2d1d084 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/a2d1d084 Branch: refs/heads/master Commit: a2d1d084b90f0f47b91aa372525f01a382c892e7 Parents: 50aea88 Author: zentol <[email protected]> Authored: Wed Feb 14 12:45:17 2018 +0100 Committer: zentol <[email protected]> Committed: Mon Feb 26 20:42:00 2018 +0100 ---------------------------------------------------------------------- docs/monitoring/metrics.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/a2d1d084/docs/monitoring/metrics.md ---------------------------------------------------------------------- diff --git a/docs/monitoring/metrics.md b/docs/monitoring/metrics.md index 62adeb1..1e70dd7 100644 --- a/docs/monitoring/metrics.md +++ b/docs/monitoring/metrics.md @@ -1190,6 +1190,12 @@ Thus, in order to infer the metric identifier: </thead> <tbody> <tr> + <th rowspan="1"><strong>Job (only available on TaskManager)</strong></th> + <td><source_id>.<source_subtask_index>.<operator_id>.<operator_subtask_index>.latency</td> + <td>The latency distributions from a given source subtask to an operator subtask (in milliseconds).</td> + <td>Histogram</td> + </tr> + <tr> <th rowspan="6"><strong>Task</strong></th> <td>numBytesInLocal</td> <td>The total number of bytes this task has read from a local source.</td> @@ -1247,7 +1253,7 @@ Thus, in order to infer the metric identifier: <td>Counter</td> </tr> <tr> - <th rowspan="6"><strong>Operator</strong></th> + <th rowspan="5"><strong>Operator</strong></th> <td>currentInputWatermark</td> <td> The last watermark this operator has received (in milliseconds). @@ -1279,11 +1285,6 @@ Thus, in order to infer the metric identifier: <td>Gauge</td> </tr> <tr> - <td>latency</td> - <td>The latency distributions from all incoming sources (in milliseconds).</td> - <td>Histogram</td> - </tr> - <tr> <td>numSplitsProcessed</td> <td>The total number of InputSplits this data source has processed (if the operator is a data source).</td> <td>Gauge</td>
