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: content/integrate/prometheus-with-redis-enterprise/prometheus-metrics-definitions.md
+37-37Lines changed: 37 additions & 37 deletions
Original file line number
Diff line number
Diff line change
@@ -23,43 +23,43 @@ The v2 metrics in the following tables are available as of Redis Enterprise Soft
23
23
24
24
## Database metrics
25
25
26
-
| Metric | Description |
27
-
| :-------- | :---------- |
28
-
| <spanclass="break-all">endpoint_client_connections</span> | Number of client connection establishment events |
29
-
| <spanclass="break-all">endpoint_client_disconnections</span> | Number of client disconnections initiated by the client |
30
-
| <spanclass="break-all">endpoint_client_connection_expired</span> | Total number of client connections with expired TTL (Time To Live) |
31
-
| <spanclass="break-all">endpoint_client_establishment_failures</span> | Number of client connections that failed to establish properly |
32
-
| <spanclass="break-all">endpoint_client_expiration_refresh</span> | Number of expiration time changes of clients |
33
-
| <spanclass="break-all">endpoint_client_tracking_off_requests</span> | Total number of `CLIENT TRACKING OFF` requests |
34
-
| <spanclass="break-all">endpoint_client_tracking_on_requests</span> | Total number of `CLIENT TRACKING ON` requests |
35
-
| <spanclass="break-all">endpoint_disconnected_cba_client</span> | Number of certificate-based clients disconnected |
36
-
| <spanclass="break-all">endpoint_disconnected_ldap_client</span> | Number of LDAP clients disconnected |
37
-
| <spanclass="break-all">endpoint_disconnected_user_password_client</span> | Number of user&password clients disconnected |
38
-
| <spanclass="break-all">endpoint_disposed_commands_after_client_caching</span> | Total number of client caching commands that were disposed due to misuse |
39
-
| <spanclass="break-all">endpoint_egress</span> | Number of egress bytes |
40
-
| <spanclass="break-all">endpoint_egress_pending</span> | Number of send-pending bytes |
41
-
| <spanclass="break-all">endpoint_egress_pending_discarded</span> | Number of send-pending bytes that were discarded due to disconnection |
42
-
| <spanclass="break-all">endpoint_failed_cba_authentication</span> | Number of clients that failed certificate-based authentication |
43
-
| <spanclass="break-all">endpoint_failed_ldap_authentication</span> | Number of clients that failed LDAP authentication |
44
-
| <spanclass="break-all">endpoint_failed_user_password_authentication</span> | Number of clients that failed user password authentication |
45
-
| <spanclass="break-all">endpoint_ingress</span> | Number of ingress bytes |
46
-
| <spanclass="break-all">endpoint_longest_pipeline_histogram</span> | Client connections with the longest pipeline lengths |
47
-
| <spanclass="break-all">endpoint_other_requests</span> | Number of other requests |
48
-
| <spanclass="break-all">endpoint_other_requests_latency_histogram</span> | Latency (in µs) histogram of other commands |
49
-
| <spanclass="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 /><spanclass="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
-
| <spanclass="break-all">endpoint_other_responses</span> | Number of other responses |
51
-
| <spanclass="break-all">endpoint_proxy_disconnections</span> | Number of client disconnections initiated by the proxy |
52
-
| <spanclass="break-all">endpoint_read_requests</span> | Number of read requests |
53
-
| <spanclass="break-all">endpoint_read_requests_latency_histogram</span> | Latency (in µs) histogram of read commands |
54
-
| <spanclass="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 /><spanclass="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
-
| <spanclass="break-all">endpoint_read_responses</span> | Number of read responses |
56
-
| <spanclass="break-all">endpoint_successful_cba_authentication</span> | Number of clients that successfully authenticated with certificate-based authentication |
57
-
| <spanclass="break-all">endpoint_successful_ldap_authentication</span> | Number of clients that successfully authenticated with LDAP |
58
-
| <spanclass="break-all">endpoint_successful_user_password_authentication</span> | Number of clients that successfully authenticated with user&password |
59
-
| <spanclass="break-all">endpoint_write_requests</span> | Number of write requests |
60
-
| <spanclass="break-all">endpoint_write_requests_latency_histogram</span> | Latency (in µs) histogram of write commands |
61
-
| <spanclass="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 /><spanclass="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
-
| <spanclass="break-all">endpoint_write_responses</span> | Number of write responses |
26
+
| Metric |Type |Description |
27
+
| :-------- | :---| :---------- |
28
+
| <spanclass="break-all">endpoint_client_connections</span> |counter |Number of client connection establishment events |
29
+
| <spanclass="break-all">endpoint_client_disconnections</span> |counter |Number of client disconnections initiated by the client |
30
+
| <spanclass="break-all">endpoint_client_connection_expired</span> |counter |Total number of client connections with expired TTL (Time To Live) |
31
+
| <spanclass="break-all">endpoint_client_establishment_failures</span> |counter |Number of client connections that failed to establish properly |
32
+
| <spanclass="break-all">endpoint_client_expiration_refresh</span> |counter |Number of expiration time changes of clients |
33
+
| <spanclass="break-all">endpoint_client_tracking_off_requests</span> |counter |Total number of `CLIENT TRACKING OFF` requests |
34
+
| <spanclass="break-all">endpoint_client_tracking_on_requests</span> |counter |Total number of `CLIENT TRACKING ON` requests |
35
+
| <spanclass="break-all">endpoint_disconnected_cba_client</span> |counter |Number of certificate-based clients disconnected |
36
+
| <spanclass="break-all">endpoint_disconnected_ldap_client</span> |counter |Number of LDAP clients disconnected |
37
+
| <spanclass="break-all">endpoint_disconnected_user_password_client</span> |counter |Number of user&password clients disconnected |
38
+
| <spanclass="break-all">endpoint_disposed_commands_after_client_caching</span> |counter |Total number of client caching commands that were disposed due to misuse |
39
+
| <spanclass="break-all">endpoint_egress</span> |counter |Number of egress bytes |
40
+
| <spanclass="break-all">endpoint_egress_pending</span> |counter |Number of send-pending bytes |
41
+
| <spanclass="break-all">endpoint_egress_pending_discarded</span> |counter |Number of send-pending bytes that were discarded due to disconnection |
42
+
| <spanclass="break-all">endpoint_failed_cba_authentication</span> |counter |Number of clients that failed certificate-based authentication |
43
+
| <spanclass="break-all">endpoint_failed_ldap_authentication</span> |counter |Number of clients that failed LDAP authentication |
44
+
| <spanclass="break-all">endpoint_failed_user_password_authentication</span> |counter |Number of clients that failed user password authentication |
45
+
| <spanclass="break-all">endpoint_ingress</span> |counter |Number of ingress bytes |
46
+
| <spanclass="break-all">endpoint_longest_pipeline_histogram</span> |counter |Client connections with the longest pipeline lengths |
47
+
| <spanclass="break-all">endpoint_other_requests</span> |counter |Number of other requests |
48
+
| <spanclass="break-all">endpoint_other_requests_latency_histogram</span> |histogram |Latency (in µs) histogram of other commands |
49
+
| <spanclass="break-all">endpoint_other_requests_latency_histogram_bucket</span> |histogram |Latency histograms for commands other than read or write commands. Can be used to represent different latency percentiles.<br />p99.9 example:<br /><spanclass="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
+
| <spanclass="break-all">endpoint_other_responses</span> |counter |Number of other responses |
51
+
| <spanclass="break-all">endpoint_proxy_disconnections</span> |counter |Number of client disconnections initiated by the proxy |
52
+
| <spanclass="break-all">endpoint_read_requests</span> |counter |Number of read requests |
53
+
| <spanclass="break-all">endpoint_read_requests_latency_histogram</span> |histogram |Latency (in µs) histogram of read commands |
54
+
| <spanclass="break-all">endpoint_read_requests_latency_histogram_bucket</span> |histogram |Latency histograms for read commands. Can be used to represent different latency percentiles.<br />p99.9 example:<br /><spanclass="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
+
| <spanclass="break-all">endpoint_read_responses</span> |counter |Number of read responses |
56
+
| <spanclass="break-all">endpoint_successful_cba_authentication</span> |counter |Number of clients that successfully authenticated with certificate-based authentication |
57
+
| <spanclass="break-all">endpoint_successful_ldap_authentication</span> |counter |Number of clients that successfully authenticated with LDAP |
58
+
| <spanclass="break-all">endpoint_successful_user_password_authentication</span> |counter |Number of clients that successfully authenticated with user&password |
59
+
| <spanclass="break-all">endpoint_write_requests</span> |counter |Number of write requests |
60
+
| <spanclass="break-all">endpoint_write_requests_latency_histogram</span> |histogram |Latency (in µs) histogram of write commands |
61
+
| <spanclass="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 /><spanclass="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
+
| <spanclass="break-all">endpoint_write_responses</span> |counter |Number of write responses |
0 commit comments