This is an automated email from the ASF dual-hosted git repository. chesnay pushed a commit to branch release-1.9 in repository https://gitbox.apache.org/repos/asf/flink.git
View the commit online: https://github.com/apache/flink/commit/1c97e1d380e776ee2a3d32981f0e9a4cedd41a64 The following commit(s) were added to refs/heads/release-1.9 by this push: new 1c97e1d [FLINK-14641][docs] Fix description of metric `fullRestarts` (#10128) 1c97e1d is described below commit 1c97e1d380e776ee2a3d32981f0e9a4cedd41a64 Author: Zhu Zhu <[email protected]> AuthorDate: Wed Nov 20 22:11:36 2019 +0800 [FLINK-14641][docs] Fix description of metric `fullRestarts` (#10128) Pointing out that this metric also includes fine grained restarts in 1.9.2 and later versions. --- docs/monitoring/metrics.md | 5 ++++- docs/monitoring/metrics.zh.md | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/monitoring/metrics.md b/docs/monitoring/metrics.md index d7b04b5..173f0b1 100644 --- a/docs/monitoring/metrics.md +++ b/docs/monitoring/metrics.md @@ -1271,7 +1271,10 @@ Metrics related to data exchange between task executors using netty network comm </tr> <tr> <td>fullRestarts</td> - <td>The total number of full restarts since this job was submitted.</td> + <td> + The total number of full restarts since this job was submitted. + <span class="label label-danger">Attention:</span> Since 1.9.2, this metric also includes fine-grained restarts. + </td> <td>Gauge</td> </tr> </tbody> diff --git a/docs/monitoring/metrics.zh.md b/docs/monitoring/metrics.zh.md index 955e3e6..b9137f7 100644 --- a/docs/monitoring/metrics.zh.md +++ b/docs/monitoring/metrics.zh.md @@ -1270,7 +1270,10 @@ Metrics related to data exchange between task executors using netty network comm </tr> <tr> <td>fullRestarts</td> - <td>The total number of full restarts since this job was submitted.</td> + <td> + The total number of full restarts since this job was submitted. + <span class="label label-danger">Attention:</span> Since 1.9.2, this metric also includes fine-grained restarts. + </td> <td>Gauge</td> </tr> </tbody>
