fredia commented on code in PR #25837: URL: https://github.com/apache/flink/pull/25837#discussion_r2034408160
########## docs/content/docs/ops/metrics.md: ########## @@ -1358,6 +1358,157 @@ Note that for failed checkpoints, metrics are updated on a best efforts basis an </tbody> </table> +### State Size + +<table class="table table-bordered"> + <thead> + <tr> + <th class="text-left" style="width: 18%">Scope</th> + <th class="text-left" style="width: 26%">Metrics</th> + <th class="text-left" style="width: 48%">Description</th> + <th class="text-left" style="width: 8%">Type</th> + </tr> + </thead> + <tbody> + <tr> + <th rowspan="27"><strong>Task/Operator</strong></th> + <td>valueStateGetKeySize</td> + <td>The key size of get operation for value state</td> + <td>Histogram</td> + </tr> + <tr> + <td>valueStateGetValueSize</td> + <td>The value size of get operation for value state</td> + <td>Histogram</td> + </tr> + <tr> + <td>valueStateUpdateKeySize</td> + <td>The key size of update operation for value state</td> + <td>Histogram</td> + </tr> + <tr> + <td>valueStateUpdateValueSize</td> + <td>The value size of update operation for value state</td> + <td>Histogram</td> + </tr> + <tr> + <td>reducingStateGetKeySize</td> + <td>The key size of get operation for reducing state</td> + <td>Histogram</td> + </tr> + <tr> + <td>reducingStateGetKeySize</td> Review Comment: `reducingStateGetValueSize`? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
