1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

plugins/redis/redis_: Make used_memory use base 1024 like it should

This commit is contained in:
Michael Renner 2012-12-14 11:42:46 +01:00
parent c2ecfcb772
commit b6b77ef9d5

View file

@ -172,7 +172,7 @@ switch ($0) {
print "graph_title Used memory\n";
print "graph_vlabel Used memory\n";
print "graph_category redis\n";
print "graph_args -l 0\n";
print "graph_args -l 0 --base 1024\n";
print "used_memory.label used memory\n";
print "used_memory.draw AREA\n";
exit 0;