Added Overall(method name)AvgTime to Metrics.md

This commit is contained in:
Xing Lin 2023-06-09 12:26:12 -07:00
parent 0e0bb903bb
commit d454090920
1 changed files with 3 additions and 1 deletions

View File

@ -145,8 +145,10 @@ to FairCallQueue metrics. For each level of priority, rpcqueue and rpcprocessing
rpcdetailed context
===================
Metrics of rpcdetailed context are exposed in unified manner by RPC layer. Two metrics are exposed for each RPC based on its name. Metrics named "(RPC method name)NumOps" indicates total number of method calls, and metrics named "(RPC method name)AvgTime" shows average turn around time for method calls in milliseconds.
Metrics of rpcdetailed context are exposed in unified manner by RPC layer. Two metrics are exposed for each RPC based on its name. Metrics named "(RPC method name)NumOps" indicates total number of method calls, and metrics named "(RPC method name)AvgTime" shows average processing time for method calls in milliseconds.
Please note that the AvgTime metrics do not include time spent waiting to acquire locks on data structures (see RpcLockWaitTimeAvgTime).
Metrics named "Overall(RPC method name)AvgTime" shows the average overall processing time for method calls
in milliseconds. It is measured from request arrival to when the response is sent back to the client.
rpcdetailed
-----------