From d75ac8d115e0a3cbe777fd01fd1c37fa147e60c2 Mon Sep 17 00:00:00 2001 From: Rachel Elledge Date: Tue, 9 Sep 2025 14:04:01 -0500 Subject: [PATCH] DOC-5726 RS: Fixed v2 PromQL equivalent for bdb_up metric --- content/embeds/rs-prometheus-metrics-transition-plan.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/embeds/rs-prometheus-metrics-transition-plan.md b/content/embeds/rs-prometheus-metrics-transition-plan.md index ab1dfe61d1..91ac65a27c 100644 --- a/content/embeds/rs-prometheus-metrics-transition-plan.md +++ b/content/embeds/rs-prometheus-metrics-transition-plan.md @@ -59,7 +59,7 @@ | bdb_total_req_max | `max_over_time(sum by (db) (irate(endpoint_read_requests{db=""$db""}[1m]) + irate(endpoint_write_requests{db=""$db""}[1m]) + irate(endpoint_other_requests{db=""$db""}[1m])) [$__range:])` | Highest value of the rate of all requests on the database (ops/sec) | | bdb_total_res | `sum by (db) (irate(endpoint_read_responses{db=""$db""}[1m]) + irate(endpoint_write_responses{db=""$db""}[1m]) + irate(endpoint_other_responses{db=""$db""}[1m]))` | Rate of all responses on the database (ops/sec) | | bdb_total_res_max | `max_over_time(sum by (db) (irate(endpoint_read_responses{db=""$db""}[1m]) + irate(endpoint_write_responses{db=""$db""}[1m]) + irate(endpoint_other_responses{db=""$db""}[1m])) [$__range:])` | Highest value of the rate of all responses on the database (ops/sec) | -| bdb_up | `min by(db) (redis_up)` | Database is up and running | +| bdb_up | `min by(db) (redis_server_up)` | Database is up and running | | bdb_used_memory | `sum by (db) (redis_server_used_memory)` | Memory used by database (in BigRedis this includes flash) (bytes) | | bdb_write_hits | `sum by (db) (irate(redis_server_keyspace_write_hits{role="master"}[1m]))` | Rate of write operations accessing an existing key (ops/sec) | | bdb_write_hits_max | `sum by (db) (irate(redis_server_keyspace_write_hits{role="master"}[1m]))` | Highest value of the rate of write operations accessing an existing key (ops/sec) |