You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/administration/management/monitoring/metrics.md
+92Lines changed: 92 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1854,3 +1854,95 @@ All transaction metrics share the following labels:
1854
1854
- Unit: ms
1855
1855
- Type: Summary
1856
1856
- Description: The final acknowledgment latency, from when the `publish` task finishes to the final `finish` time when the transaction is marked as `VISIBLE`. This metric includes any final steps or acknowledgments required.
1857
+
1858
+
### Merge Commit BE Metrics
1859
+
1860
+
#### merge_commit_request_total
1861
+
1862
+
- Unit: Count
1863
+
- Type: Cumulative
1864
+
- Description: Total number of merge commit requests received by BE.
1865
+
1866
+
#### merge_commit_request_bytes
1867
+
1868
+
- Unit: Bytes
1869
+
- Type: Cumulative
1870
+
- Description: Total bytes of data received across merge commit requests.
1871
+
1872
+
#### merge_commit_success_total
1873
+
1874
+
- Unit: Count
1875
+
- Type: Cumulative
1876
+
- Description: Merge commit requests that finished successfully.
1877
+
1878
+
#### merge_commit_fail_total
1879
+
1880
+
- Unit: Count
1881
+
- Type: Cumulative
1882
+
- Description: Merge commit requests that failed.
1883
+
1884
+
#### merge_commit_pending_total
1885
+
1886
+
- Unit: Count
1887
+
- Type: Instantaneous
1888
+
- Description: Merge commit tasks currently waiting in the execution queue.
1889
+
1890
+
#### merge_commit_pending_bytes
1891
+
1892
+
- Unit: Bytes
1893
+
- Type: Instantaneous
1894
+
- Description: Total bytes of data held by pending merge commit tasks.
1895
+
1896
+
#### merge_commit_send_rpc_total
1897
+
1898
+
- Unit: Count
1899
+
- Type: Cumulative
1900
+
- Description: RPC requests sent to FE for starting merge commit operations.
1901
+
1902
+
#### merge_commit_register_pipe_total
1903
+
1904
+
- Unit: Count
1905
+
- Type: Cumulative
1906
+
- Description: Stream load pipes registered for merge commit operations.
1907
+
1908
+
#### merge_commit_unregister_pipe_total
1909
+
1910
+
- Unit: Count
1911
+
- Type: Cumulative
1912
+
- Description: Stream load pipes unregistered from merge commit operations.
1913
+
1914
+
Latency metrics expose percentile series such as `merge_commit_request_latency_99` and `merge_commit_request_latency_90`, reported in microseconds. The end-to-end latency obeys:
0 commit comments