Skip to content

Commit 4449ea2

Browse files
committed
DOC-3944 Add v2 DB metrics
1 parent 26b9024 commit 4449ea2

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

content/integrate/prometheus-with-redis-enterprise/prometheus-metrics-definitions.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,41 @@ The v2 metrics in the following tables are available as of Redis Enterprise Soft
2525

2626
| V2 metric | Description |
2727
| :-------- | :---------- |
28+
| <span class="break-all">endpoint_client_connections</span> | Number of client connection establishment events |
29+
| <span class="break-all">endpoint_client_disconnections</span> | Number of client disconnections initiated by the client |
30+
| <span class="break-all">endpoint_client_connection_expired</span> | Total number of client connections with expired TTL (Time To Live) |
31+
| <span class="break-all">endpoint_client_establishment_failures</span> | Number of client connections that failed to establish properly |
32+
| <span class="break-all">endpoint_client_expiration_refresh</span> | Number of expiration time changes of clients |
33+
| <span class="break-all">endpoint_client_tracking_off_requests</span> | Total number of `CLIENT TRACKING OFF` requests |
34+
| <span class="break-all">endpoint_client_tracking_on_requests</span> | Total number of `CLIENT TRACKING ON` requests |
35+
| <span class="break-all">endpoint_disconnected_cba_client</span> | Number of certificate-based clients disconnected |
36+
| <span class="break-all">endpoint_disconnected_ldap_client</span> | Number of LDAP clients disconnected |
37+
| <span class="break-all">endpoint_disconnected_user_password_client</span> | Number of user&password clients disconnected |
38+
| <span class="break-all">endpoint_disposed_commands_after_client_caching</span> | Total number of client caching commands that were disposed due to misuse |
39+
| <span class="break-all">endpoint_egress</span> | Number of egress bytes |
40+
| <span class="break-all">endpoint_egress_pending</span> | Number of send-pending bytes |
41+
| <span class="break-all">endpoint_egress_pending_discarded</span> | Number of send-pending bytes that were discarded due to disconnection |
42+
| <span class="break-all">endpoint_failed_cba_authentication</span> | Number of clients that failed certificate-based authentication |
43+
| <span class="break-all">endpoint_failed_ldap_authentication</span> | Number of clients that failed LDAP authentication |
44+
| <span class="break-all">endpoint_failed_user_password_authentication</span> | Number of clients that failed user password authentication |
45+
| <span class="break-all">endpoint_ingress</span> | Number of ingress bytes |
46+
| <span class="break-all">endpoint_longest_pipeline_histogram</span> | Client connections with the longest pipeline lengths |
47+
| <span class="break-all">endpoint_other_requests</span> | Number of other requests |
48+
| <span class="break-all">endpoint_other_requests_latency_histogram</span> | Latency (in µs) histogram of other commands |
2849
| <span class="break-all">endpoint_other_requests_latency_histogram_bucket</span> | Latency histograms for commands other than read or 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_other_requests_latency_histogram_bucket{cluster="$cluster", db="$db"}[$__rate_interval]) ) by (le, db))`</span> |
50+
| <span class="break-all">endpoint_other_responses</span> | Number of other responses |
51+
| <span class="break-all">endpoint_proxy_disconnections</span> | Number of client disconnections initiated by the proxy |
52+
| <span class="break-all">endpoint_read_requests</span> | Number of read requests |
53+
| <span class="break-all">endpoint_read_requests_latency_histogram</span> | Latency (in µs) histogram of read commands |
2954
| <span class="break-all">endpoint_read_requests_latency_histogram_bucket</span> | Latency histograms for read 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_read_requests_latency_histogram_bucket{cluster="$cluster", db="$db"}[$__rate_interval]) ) by (le, db))`</span> |
55+
| <span class="break-all">endpoint_read_responses</span> | Number of read responses |
56+
| <span class="break-all">endpoint_successful_cba_authentication</span> | Number of clients that successfully authenticated with certificate-based authentication |
57+
| <span class="break-all">endpoint_successful_ldap_authentication</span> | Number of clients that successfully authenticated with LDAP |
58+
| <span class="break-all">endpoint_successful_user_password_authentication</span> | Number of clients that successfully authenticated with user&password |
59+
| <span class="break-all">endpoint_write_requests</span> | Number of write requests |
60+
| <span class="break-all">endpoint_write_requests_latency_histogram</span> | Latency (in µs) histogram of write commands |
3061
| <span class="break-all">endpoint_write_requests_latency_histogram_bucket</span> | 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> |
62+
| <span class="break-all">endpoint_write_responses</span> | Number of write responses |
3163

3264
## Node metrics
3365

0 commit comments

Comments
 (0)