Blame SOURCES/0017-Issue-49035-dbmon.sh-shows-pages-in-use-that-exceeds.patch

b69e47
From c14b2d88497724c4e19e5fae89bb40c95a61e1cb Mon Sep 17 00:00:00 2001
b69e47
From: Mark Reynolds <mreynolds@redhat.com>
b69e47
Date: Thu, 30 Mar 2017 15:26:00 -0400
b69e47
Subject: [PATCH] Issue 49035 - dbmon.sh shows pages-in-use that exceeds the
b69e47
 cache size
b69e47
b69e47
Bug Description:  dbmon shows negative free cache stats because the pages-in-use exceeds
b69e47
                  the expected size of the cache.  This is because on caches smaller
b69e47
                  than 500mb, libdb automatically increases the size by ~25%.  The tool
b69e47
                  is only checking the configured db cache size, and in this case its
b69e47
                  actaully larger than what was conigured in dse.ldif.
b69e47
b69e47
Fix Description:  dbmon.sh should use the libdb's "cache size in bytes", instead of
b69e47
                  nsslapd-dbcachesize - as it could be different.
b69e47
b69e47
https://pagure.io/389-ds-base/issue/49035
b69e47
b69e47
Reviewed by: nhosoi & wibrown (Thanks!!)
b69e47
---
b69e47
 ldap/admin/src/scripts/dbmon.sh.in | 2 +-
b69e47
 1 file changed, 1 insertion(+), 1 deletion(-)
b69e47
b69e47
diff --git a/ldap/admin/src/scripts/dbmon.sh.in b/ldap/admin/src/scripts/dbmon.sh.in
b69e47
index 4ee6adc..46796e2 100644
b69e47
--- a/ldap/admin/src/scripts/dbmon.sh.in
b69e47
+++ b/ldap/admin/src/scripts/dbmon.sh.in
b69e47
@@ -47,7 +47,7 @@ parseldif() {
b69e47
         }
b69e47
         /^[^ ]|^$/ {origline = $0; $0 = unwrapline; unwrapline = origline}
b69e47
         /^ / {sub(/^ /, ""); unwrapline = unwrapline $0; next}
b69e47
-        /^nsslapd-dbcachesize/ { dbcachesize=$2 }
b69e47
+        /^nsslapd-db-cache-size-bytes/ { dbcachesize=$2 }
b69e47
         /^nsslapd-db-page-size/ { pagesize=$2 }
b69e47
         /^dbcachehitratio/ { dbhitratio=$2 }
b69e47
         /^dbcachepagein/ { dbcachepagein=$2 }
b69e47
-- 
b69e47
2.9.3
b69e47