Skip to content

Commit a666120

Browse files
Update prometheus-metrics-definitions.md (#1149)
adjust pipeline histogram description add type to replication metrics
1 parent 1cccc9f commit a666120

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

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

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The v2 metrics in the following tables are available as of Redis Enterprise Soft
4343
| <span class="break-all">endpoint_failed_ldap_authentication</span> | counter | Number of clients that failed LDAP authentication |
4444
| <span class="break-all">endpoint_failed_user_password_authentication</span> | counter | Number of clients that failed user password authentication |
4545
| <span class="break-all">endpoint_ingress</span> | counter | Number of ingress bytes |
46-
| <span class="break-all">endpoint_longest_pipeline_histogram</span> | counter | Client connections with the longest pipeline lengths |
46+
| <span class="break-all">endpoint_longest_pipeline_histogram</span> | counter | Tracks the distribution of longest observed pipeline lengths, where a pipeline is a sequence of client commands sent without waiting for responses. |
4747
| <span class="break-all">endpoint_other_requests</span> | counter | Number of other requests |
4848
| <span class="break-all">endpoint_other_requests_latency_histogram</span> | histogram | Latency (in µs) histogram of other commands |
4949
| <span class="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 /><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> |
@@ -97,28 +97,28 @@ The v2 metrics in the following tables are available as of Redis Enterprise Soft
9797

9898
## Replication metrics
9999

100-
| Metric | Description |
101-
| :-------- | :---------- |
102-
| <span class="break-all">database_syncer_config</span> | Used as a placeholder for configuration labels |
103-
| <span class="break-all">database_syncer_current_status</span> | Syncer status for traffic; 0 = in-sync, 2 = out of sync |
104-
| <span class="break-all">database_syncer_dst_connectivity_state</span> | Destination connectivity state |
105-
| <span class="break-all">database_syncer_dst_connectivity_state_ms</span> | Destination connectivity state duration |
106-
| <span class="break-all">database_syncer_dst_lag</span> | Lag in milliseconds between the syncer and the destination |
107-
| <span class="break-all">database_syncer_dst_repl_offset</span> | Offset of the last command acknowledged |
108-
| <span class="break-all">database_syncer_flush_counter</span> | Number of destination flushes |
109-
| <span class="break-all">database_syncer_ingress_bytes</span> | Number of bytes read from source shard |
110-
| <span class="break-all">database_syncer_ingress_bytes_decompressed</span> | Number of bytes read from source shard |
111-
| <span class="break-all">database_syncer_internal_state</span> | Internal state of the syncer |
112-
| <span class="break-all">database_syncer_lag_ms</span> | Lag time between the source and the destination for traffic in milliseconds |
113-
| <span class="break-all">database_syncer_rdb_size</span> | The source's RDB size in bytes to be transferred during the syncing phase |
114-
| <span class="break-all">database_syncer_rdb_transferred</span> | Number of bytes transferred from the source's RDB during the syncing phase |
115-
| <span class="break-all">database_syncer_src_connectivity_state</span> | Source connectivity state |
116-
| <span class="break-all">database_syncer_src_connectivity_state_ms</span> | Source connectivity state duration |
117-
| <span class="break-all">database_syncer_src_repl_offset</span> | Last known source offset |
118-
| <span class="break-all">database_syncer_state</span> | Internal state of the shard syncer |
119-
| <span class="break-all">database_syncer_syncer_repl_offset</span> | Offset of the last command handled by the syncer |
120-
| <span class="break-all">database_syncer_total_requests</span> | Number of destination writes |
121-
| <span class="break-all">database_syncer_total_responses</span> | Number of destination writes acknowledged |
100+
| Metric | Type | Description |
101+
| :-------- | :--- | :---------- |
102+
| <span class="break-all">database_syncer_config</span> | gauge | Used as a placeholder for configuration labels |
103+
| <span class="break-all">database_syncer_current_status</span> | gauge | Syncer status for traffic; 0 = in-sync, 2 = out of sync |
104+
| <span class="break-all">database_syncer_dst_connectivity_state</span> | gauge | Destination connectivity state |
105+
| <span class="break-all">database_syncer_dst_connectivity_state_ms</span> | gauge | Destination connectivity state duration |
106+
| <span class="break-all">database_syncer_dst_lag</span> | gauge | Lag in milliseconds between the syncer and the destination |
107+
| <span class="break-all">database_syncer_dst_repl_offset</span> | gauge | Offset of the last command acknowledged |
108+
| <span class="break-all">database_syncer_flush_counter</span> | gauge | Number of destination flushes |
109+
| <span class="break-all">database_syncer_ingress_bytes</span> | gauge | Number of bytes read from source shard |
110+
| <span class="break-all">database_syncer_ingress_bytes_decompressed</span> | gauge | Number of bytes read from source shard |
111+
| <span class="break-all">database_syncer_internal_state</span> | gauge | Internal state of the syncer |
112+
| <span class="break-all">database_syncer_lag_ms</span> | gauge | Lag time between the source and the destination for traffic in milliseconds |
113+
| <span class="break-all">database_syncer_rdb_size</span> | gauge | The source's RDB size in bytes to be transferred during the syncing phase |
114+
| <span class="break-all">database_syncer_rdb_transferred</span> | gauge | Number of bytes transferred from the source's RDB during the syncing phase |
115+
| <span class="break-all">database_syncer_src_connectivity_state</span> | gauge | Source connectivity state |
116+
| <span class="break-all">database_syncer_src_connectivity_state_ms</span> | gauge | Source connectivity state duration |
117+
| <span class="break-all">database_syncer_src_repl_offset</span> | gauge | Last known source offset |
118+
| <span class="break-all">database_syncer_state</span> | gauge | Internal state of the shard syncer |
119+
| <span class="break-all">database_syncer_syncer_repl_offset</span> | gauge | Offset of the last command handled by the syncer |
120+
| <span class="break-all">database_syncer_total_requests</span> | gauge | Number of destination writes |
121+
| <span class="break-all">database_syncer_total_responses</span> | gauge | Number of destination writes acknowledged |
122122

123123
## Shard metrics
124124

0 commit comments

Comments
 (0)