1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-09-18 16:48:44 +00:00

Merge pull request #223 from terrorobe/patch-1

plugins/redis/redis_: Make used_memory use base 1024 like it should
This commit is contained in:
Diego Elio Pettenò 2012-12-14 04:54:48 -08:00
commit 423989a6f8

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;