mirror of https://github.com/mikaku/Monitorix.git
Fixed a bug that prevented from seeing stats in the 'nfss' graph
This commit is contained in:
parent
0897725442
commit
30cda07b50
8
Changes
8
Changes
|
@ -1,3 +1,8 @@
|
||||||
|
3.N.N - NN-XXX-2013
|
||||||
|
====================
|
||||||
|
- Fixed a bug that prevented from seeing stats in the 'nfss' graph.
|
||||||
|
|
||||||
|
|
||||||
3.2.1 - 03-Jun-2013
|
3.2.1 - 03-Jun-2013
|
||||||
====================
|
====================
|
||||||
- Changed the source from where is collected the memory usage in the 'squid'
|
- Changed the source from where is collected the memory usage in the 'squid'
|
||||||
|
@ -14,7 +19,8 @@
|
||||||
aren't permanently connected to the system.
|
aren't permanently connected to the system.
|
||||||
- Updated the 'monitorix.service' file. [#20]
|
- Updated the 'monitorix.service' file. [#20]
|
||||||
(thanks to Christopher Meng, rpm AT cicku.me)
|
(thanks to Christopher Meng, rpm AT cicku.me)
|
||||||
- Fixed a bug that prevented seeing the Core temperatures in the 'lmsens' graph.
|
- Fixed a bug that prevented from seeing the Core temperatures in the 'lmsens'
|
||||||
|
graph.
|
||||||
(thanks to Bryan Guidroz, bryanguidroz AT hotmail.com)
|
(thanks to Bryan Guidroz, bryanguidroz AT hotmail.com)
|
||||||
- Fixed a typo and escaped a pair of hyphens in the monitorix.conf(5) man page.
|
- Fixed a typo and escaped a pair of hyphens in the monitorix.conf(5) man page.
|
||||||
|
|
||||||
|
|
|
@ -200,7 +200,7 @@ sub nfss_update {
|
||||||
if(/^rpc\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)$/) {
|
if(/^rpc\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)$/) {
|
||||||
@rpc = ($1, $2, $3, $4, $5);
|
@rpc = ($1, $2, $3, $4, $5);
|
||||||
}
|
}
|
||||||
my $version = "";
|
my $version = $nfss->{version};
|
||||||
$version = "4ops" if $nfss->{version} eq "4";
|
$version = "4ops" if $nfss->{version} eq "4";
|
||||||
if(/^proc$version /) {
|
if(/^proc$version /) {
|
||||||
my @tmp = split(' ', $_);
|
my @tmp = split(' ', $_);
|
||||||
|
|
Loading…
Reference in New Issue