mirror of https://github.com/mikaku/Monitorix.git
fixed to force a rigid scale in the memory graph
This commit is contained in:
parent
cc103d7f4d
commit
6656de112c
2
Changes
2
Changes
|
@ -5,6 +5,8 @@ N.N.N - DD-MMM-2015
|
|||
- Fixed a message of 'use of uninitialized value' in 'port.pm'. [#110]
|
||||
- Fixed the Y-axis title in 'fail2ban.pm'. [#111]
|
||||
- Fixed to avoid negative values in the network graph of 'process.pm'. [#117]
|
||||
- Fixed to force a rigid scale in the memory graph.
|
||||
(thanks to Lane Russell, lanerussell028 AT gmail.com for pointing this out)
|
||||
- Small cosmetic changes.
|
||||
|
||||
|
||||
|
|
|
@ -703,6 +703,7 @@ sub system_cgi {
|
|||
"--height=$height",
|
||||
"--upper-limit=$total_mem",
|
||||
"--lower-limit=0",
|
||||
"--rigid",
|
||||
"--base=1024",
|
||||
$zoom,
|
||||
@{$cgi->{version12}},
|
||||
|
@ -737,6 +738,7 @@ sub system_cgi {
|
|||
"--height=$height",
|
||||
"--upper-limit=$total_mem",
|
||||
"--lower-limit=0",
|
||||
"--rigid",
|
||||
"--base=1024",
|
||||
$zoom,
|
||||
@{$cgi->{version12}},
|
||||
|
|
Loading…
Reference in New Issue