You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tz...@apache.org on 2020/09/10 14:25:37 UTC

[flink-statefun] 01/03: [FLINK-19190][docs] Switch to camelCase and add recently introduced metrics

This is an automated email from the ASF dual-hosted git repository.

tzulitai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-statefun.git

commit e35ba2b73270dae28247ccaee4fac9b5fc7b1528
Author: Igal Shilman <ig...@gmail.com>
AuthorDate: Thu Sep 10 11:28:51 2020 +0200

    [FLINK-19190][docs] Switch to camelCase and add recently introduced metrics
    
    This closes #144.
---
 docs/deployment-and-operations/metrics.md | 54 +++++++++++++++++++++++++++----
 1 file changed, 48 insertions(+), 6 deletions(-)

diff --git a/docs/deployment-and-operations/metrics.md b/docs/deployment-and-operations/metrics.md
index e566ad3..4b470c5 100644
--- a/docs/deployment-and-operations/metrics.md
+++ b/docs/deployment-and-operations/metrics.md
@@ -55,40 +55,76 @@ Along with the [standard metric scopes](https://ci.apache.org/projects/flink/fli
             <td>Meter</td>
         </tr>
         <tr>
-            <td><h5>out-local</h5></td>
+            <td><h5>outLocal</h5></td>
             <td>Function</td>
             <td>The number of messages sent to a function on the same task slot.</td>
             <td>Counter</td>
         </tr>
         <tr>
-            <td><h5>out-localRate</h5></td>
+            <td><h5>outLocalRate</h5></td>
             <td>Function</td>
             <td>The average number of messages sent to a function on the same task slot per second.</td>
             <td>Meter</td>
         </tr>
         <tr>
-            <td><h5>out-remote</h5></td>
+            <td><h5>outRemote</h5></td>
             <td>Function</td>
             <td>The number of messages sent to a function on a different task slot.</td>
             <td>Counter</td>
         </tr>
         <tr>
-            <td><h5>out-remoteRate</h5></td>
+            <td><h5>outRemoteRate</h5></td>
             <td>Function</td>
             <td>The average number of messages sent to a function on a different task slot per second.</td>
             <td>Meter</td>
         </tr>
         <tr>
-            <td><h5>out-egress</h5></td>
+            <td><h5>outEgress</h5></td>
             <td>Function</td>
             <td>The number of messages sent to an egress.</td>
             <td>Counter</td>
         </tr>
+       <tr>
+            <td><h5>inflightAsyncOps</h5></td>
+            <td>Function</td>
+            <td>The number of uncompleted asynchronous operations.</td>
+            <td>Counter</td>
+        </tr>
+        <tr>
+            <td><h5>numBackLog</h5></td>
+            <td>Remote Function</td>
+            <td>The number of pending messages to be sent.</td>
+            <td>Counter</td>
+        </tr> 
+        <tr>
+           <td><h5>numBlockedAddress</h5></td>
+           <td>Remote Function</td>
+           <td>The number of addresses that are currently under back pressure.</td>
+           <td>Counter</td>
+        </tr>
+        <tr>
+            <td><h5>remoteInvocationFailures</h5></td>
+            <td>Remote Function</td>
+            <td>The number of failed attempts to invoke a function remotely.</td>
+            <td>Counter</td>
+         </tr>
+         <tr>
+            <td><h5>remoteInvocationFailuresRate</h5></td>
+            <td>Remote Function</td>
+            <td>The average number of failed attempts to invoke a function remotely.</td>
+            <td>Meter</td>
+         </tr>
+         <tr>
+            <td><h5>remoteInvocationLatency</h5></td>
+            <td>Remote Function</td>
+            <td>A distribution of remote function invocation latencies.</td>
+            <td>Histogram</td>
+        </tr>
         <tr>
             <td><h5>feedback.produced</h5></td>
             <td>Operator</td>
             <td>The number of messages read from the feedback channel.</td>
-            <td>Meter</td>
+            <td>Counter</td>
         </tr>
         <tr>
             <td><h5>feedback.producedRate</h5></td>
@@ -96,5 +132,11 @@ Along with the [standard metric scopes](https://ci.apache.org/projects/flink/fli
             <td>The average number of messages read from the feedback channel per second.</td>
             <td>Meter</td>
         </tr>
+        <tr>
+            <td><h5>inflightAsyncOps</h5></td>
+            <td>Operator</td>
+            <td>The total number of uncompleted asynchronous operations (across all function types).</td>
+            <td>Counter</td>
+        </tr>
     </tbody>
 </table>
\ No newline at end of file