You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2017/09/28 11:11:38 UTC

[3/4] flink git commit: [FLINK-7626] [docs][metrics] Add some checkpoints metric description in docs

[FLINK-7626] [docs][metrics] Add some checkpoints metric description in docs

This closes #4677.


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/02f9e261
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/02f9e261
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/02f9e261

Branch: refs/heads/release-1.3
Commit: 02f9e261896354bb96a590bbbe18bcebb5e18486
Parents: 426a81c
Author: yew1eb <ye...@gmail.com>
Authored: Fri Sep 15 14:51:26 2017 +0800
Committer: zentol <ch...@apache.org>
Committed: Thu Sep 28 13:09:43 2017 +0200

----------------------------------------------------------------------
 docs/monitoring/metrics.md | 26 +++++++++++++++++++++++++-
 1 file changed, 25 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/02f9e261/docs/monitoring/metrics.md
----------------------------------------------------------------------
diff --git a/docs/monitoring/metrics.md b/docs/monitoring/metrics.md
index a1a50c9..e2b6e19 100644
--- a/docs/monitoring/metrics.md
+++ b/docs/monitoring/metrics.md
@@ -779,7 +779,7 @@ Thus, in order to infer the metric identifier:
   </thead>
   <tbody>
     <tr>
-      <th rowspan="3"><strong>Job (only available on JobManager)</strong></th>
+      <th rowspan="9"><strong>Job (only available on JobManager)</strong></th>
       <td>lastCheckpointDuration</td>
       <td>The time it took to complete the last checkpoint.</td>
     </tr>
@@ -792,6 +792,30 @@ Thus, in order to infer the metric identifier:
       <td>The path where the last external checkpoint was stored.</td>
     </tr>
     <tr>
+      <td>lastCheckpointRestoreTimestamp</td>
+      <td>Timestamp when the last checkpoint was restored at the coordinator.</td>
+    </tr>
+    <tr>
+      <td>lastCheckpointAlignmentBuffered</td>
+      <td>The number of buffered bytes during alignment over all subtasks for the last checkpoint.</td>
+    </tr>
+    <tr>
+      <td>numberOfInProgressCheckpoints</td>
+      <td>The number of in progress checkpoints.</td>
+    </tr>
+    <tr>
+      <td>numberOfCompletedCheckpoints</td>
+      <td>The number of successfully completed checkpoints.</td>
+    </tr>            
+    <tr>
+      <td>numberOfFailedCheckpoints</td>
+      <td>The number of failed checkpoints.</td>
+    </tr>
+    <tr>
+      <td>totalNumberOfCheckpoints</td>
+      <td>The number of total checkpoints (in progress, completed, failed).</td>
+    </tr>
+    <tr>
       <th rowspan="1">Task</th>
       <td>checkpointAlignmentTime</td>
       <td>The time in nanoseconds that the last barrier alignment took to complete, or how long the current alignment has taken so far.</td>