Skip to content

Commit 9ae05bf

Browse files
authored
DOC-5467 RS: Added connection rate throttling metrics (#1907)
1 parent 639559d commit 9ae05bf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

content/embeds/rs-prometheus-metrics-v2.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@
3737
| <span class="break-all">endpoint_write_requests_latency_histogram</span> | histogram | Latency (in µs) histogram of write commands |
3838
| <span class="break-all">endpoint_write_requests_latency_histogram_bucket</span> | histogram | Latency histograms for write commands. Can be used to represent different latency percentiles.<br />p99.9 example:<br /><span class="break-all">`histogram_quantile(0.999, sum(rate(endpoint_write_requests_latency_histogram_bucket{cluster="$cluster", db="$db"}[$__rate_interval]) ) by (le, db))`</span> |
3939
| <span class="break-all">endpoint_write_responses</span> | counter | Number of write responses |
40+
| <span class="break-all">proxy_connections_rate</span> | gauge | The rate of incoming connections. Computed as `n_accepted / N` for the last interval where `n_accepted` is the number of accepted connections in this interval, and `N` is the interval in seconds. |
41+
| <span class="break-all">proxy_rate_limit_ok</span> | gauge | Rate limit status based on the last 2 intervals.<br />0 = rate limit was recently exceeded<br />1 = rate limit was not recently exceeded |
42+
| <span class="break-all">proxy_rate_limit_overflows</span> | counter | Total number of rate limit overflows |
4043

4144
## Node metrics
4245

0 commit comments

Comments
 (0)