From 4b3af741ed3de77d9d104c77ed0a1e66811cf8a2 Mon Sep 17 00:00:00 2001 From: Mark Shabanov Date: Wed, 1 Jul 2026 17:25:08 +0300 Subject: [PATCH] added new metrics into mr-status-json-schemas.rst.inc --- .../source/mr-status-json-schemas.rst.inc | 96 +++++++++++++++++++ 1 file changed, 96 insertions(+) diff --git a/documentation/sphinx/source/mr-status-json-schemas.rst.inc b/documentation/sphinx/source/mr-status-json-schemas.rst.inc index 57ffd519b1..8529b0834c 100644 --- a/documentation/sphinx/source/mr-status-json-schemas.rst.inc +++ b/documentation/sphinx/source/mr-status-json-schemas.rst.inc @@ -304,6 +304,102 @@ "p99":0.0, "p99.9":0.0 }, + "commit_batch_transactions":{ // Number of transactions in the commit batch + "count":0, + "min":0.0, + "max":0.0, + "median":0.0, + "mean":0.0, + "p25":0.0, + "p90":0.0, + "p95":0.0, + "p99":0.0, + "p99.9":0.0 + }, + "commit_batch_bytes":{ // Total size of transactions in the commit batch (bytes) + "count":0, + "min":0.0, + "max":0.0, + "median":0.0, + "mean":0.0, + "p25":0.0, + "p90":0.0, + "p95":0.0, + "p99":0.0, + "p99.9":0.0 + }, + "commit_batching_waiting":{ // Time transactions spent waiting in queue before commit batch processing (seconds) + "count":0, + "min":0.0, + "max":0.0, + "median":0.0, + "mean":0.0, + "p25":0.0, + "p90":0.0, + "p95":0.0, + "p99":0.0, + "p99.9":0.0 + }, + "commit_preresolution_latency":{ // Latency of the pre-resolution phase (seconds) + "count":0, + "min":0.0, + "max":0.0, + "median":0.0, + "mean":0.0, + "p25":0.0, + "p90":0.0, + "p95":0.0, + "p99":0.0, + "p99.9":0.0 + }, + "commit_resolution_latency":{ // Latency of the resolution phase (seconds) + "count":0, + "min":0.0, + "max":0.0, + "median":0.0, + "mean":0.0, + "p25":0.0, + "p90":0.0, + "p95":0.0, + "p99":0.0, + "p99.9":0.0 + }, + "commit_postresolution_latency":{ // Latency of the post-resolution phase (seconds) + "count":0, + "min":0.0, + "max":0.0, + "median":0.0, + "mean":0.0, + "p25":0.0, + "p90":0.0, + "p95":0.0, + "p99":0.0, + "p99.9":0.0 + }, + "commit_tlog_logging_latency":{ // Latency of the TLog logging phase (seconds) + "count":0, + "min":0.0, + "max":0.0, + "median":0.0, + "mean":0.0, + "p25":0.0, + "p90":0.0, + "p95":0.0, + "p99":0.0, + "p99.9":0.0 + }, + "commit_reply_latency":{ // Latency of the reply phase (seconds) + "count":0, + "min":0.0, + "max":0.0, + "median":0.0, + "mean":0.0, + "p25":0.0, + "p90":0.0, + "p95":0.0, + "p99":0.0, + "p99.9":0.0 + }, "grv_latency_bands":{ // How many GRV requests belong to the latency (in seconds) band (e.g., How many requests belong to [0.01,0.1] latency band). The key is the upper bound of the band and the lower bound is the next smallest band (or 0, if none). Example: {0.01: 27, 0.1: 18, 1: 1, inf: 98,filtered: 10}, we have 18 requests in [0.01, 0.1) band. "$map_key=upperBoundOfBand": 1 },