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

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