From 30fe15404d1470a9679dbb295b6093eb29597a67 Mon Sep 17 00:00:00 2001
From: Maayan Agranat <107346841+maayanagranat@users.noreply.github.com>
Date: Thu, 9 Oct 2025 15:46:31 +0300
Subject: [PATCH] Update rs-prometheus-metrics-transition-plan.md
fix transition table bdb_memory_limit
---
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 91ac65a27c..674cfdc739 100644
--- a/content/embeds/rs-prometheus-metrics-transition-plan.md
+++ b/content/embeds/rs-prometheus-metrics-transition-plan.md
@@ -29,7 +29,7 @@
| bdb_main_thread_cpu_user_max | `sum by(irate(namedprocess_namegroup_thread_cpu_seconds_total{mode="user", threadname=~"redis-server.*"}[1m]))` | Highest value of % cores utilization in user mode for all Redis shard main threads of this database |
| bdb_mem_frag_ratio | `avg(redis_server_mem_fragmentation_ratio)` | RAM fragmentation ratio (RSS / allocated RAM) |
| bdb_mem_size_lua | `sum by(db) (redis_server_used_memory_lua)` | Redis lua scripting heap size (bytes) |
-| bdb_memory_limit | `sum by(db) (redis_server_maxmemory)` | Configured RAM limit for the database |
+| bdb_memory_limit | `db_memory_limit_bytes` | Configured RAM limit for the database |
| bdb_monitor_sessions_count | `sum by(db) (endpoint_monitor_sessions_count)` | Number of clients connected in monitor mode to the database |
| bdb_no_of_keys | `sum by (db) (redis_server_db_keys{role="master"})` | Number of keys in database |
| bdb_other_req | `sum by(db) (irate(endpoint_other_requests{db="$db"}[1m]))` | Rate of other (non read/write) requests on the database (ops/sec) |