2013-01-04 08:27:05 +00:00
#
# Monitorix - A lightweight system monitoring tool.
#
2020-02-21 09:36:35 +00:00
# Copyright (C) 2005-2020 by Jordi Sanfeliu <jordi@fibranet.cat>
2013-01-04 08:27:05 +00:00
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
package proc ;
use strict ;
use warnings ;
use Monitorix ;
use RRDs ;
use Exporter 'import' ;
our @ EXPORT = qw( proc_init proc_update proc_cgi ) ;
sub proc_init {
my $ myself = ( caller ( 0 ) ) [ 3 ] ;
my ( $ package , $ config , $ debug ) = @ _ ;
my $ rrd = $ config - > { base_lib } . $ package . ".rrd" ;
my $ proc = $ config - > { proc } ;
my $ info ;
my @ ds ;
2013-10-29 10:51:17 +00:00
my @ rra ;
2013-01-04 08:27:05 +00:00
my @ tmp ;
my $ n ;
2013-10-29 10:51:17 +00:00
my @ average ;
my @ min ;
my @ max ;
my @ last ;
2013-01-04 08:27:05 +00:00
if ( ! grep { $ _ eq $ config - > { os } } ( "Linux" , "FreeBSD" ) ) {
logger ( "$myself is not supported yet by your operating system ($config->{os})." ) ;
return ;
}
if ( - e $ rrd ) {
$ info = RRDs:: info ( $ rrd ) ;
for my $ key ( keys %$ info ) {
if ( index ( $ key , 'ds[' ) == 0 ) {
if ( index ( $ key , '.type' ) != - 1 ) {
push ( @ ds , substr ( $ key , 3 , index ( $ key , ']' ) - 3 ) ) ;
}
}
2013-10-29 10:51:17 +00:00
if ( index ( $ key , 'rra[' ) == 0 ) {
if ( index ( $ key , '.rows' ) != - 1 ) {
push ( @ rra , substr ( $ key , 4 , index ( $ key , ']' ) - 4 ) ) ;
}
}
2013-01-04 08:27:05 +00:00
}
if ( scalar ( @ ds ) / 9 != $ proc - > { max } ) {
2013-10-29 10:51:17 +00:00
logger ( "$myself: Detected size mismatch between 'max = $proc->{max}' and $rrd (" . scalar ( @ ds ) / 9 . "). Resizing it accordingly. All historical data will be lost. Backup file created." ) ;
rename ( $ rrd , "$rrd.bak" ) ;
}
2013-11-04 15:51:19 +00:00
if ( scalar ( @ rra ) < 12 + ( 4 * $ config - > { max_historic_years } ) ) {
2013-10-29 10:51:17 +00:00
logger ( "$myself: Detected size mismatch between 'max_historic_years' (" . $ config - > { max_historic_years } . ") and $rrd (" . ( ( scalar ( @ rra ) - 12 ) / 4 ) . "). Resizing it accordingly. All historical data will be lost. Backup file created." ) ;
2013-01-04 08:27:05 +00:00
rename ( $ rrd , "$rrd.bak" ) ;
}
}
if ( ! ( - e $ rrd ) ) {
logger ( "Creating '$rrd' file." ) ;
2013-10-29 10:51:17 +00:00
for ( $ n = 1 ; $ n <= $ config - > { max_historic_years } ; $ n + + ) {
push ( @ average , "RRA:AVERAGE:0.5:1440:" . ( 365 * $ n ) ) ;
push ( @ min , "RRA:MIN:0.5:1440:" . ( 365 * $ n ) ) ;
push ( @ max , "RRA:MAX:0.5:1440:" . ( 365 * $ n ) ) ;
push ( @ last , "RRA:LAST:0.5:1440:" . ( 365 * $ n ) ) ;
}
2013-01-04 08:27:05 +00:00
for ( $ n = 0 ; $ n < $ proc - > { max } ; $ n + + ) {
push ( @ tmp , "DS:proc" . $ n . "_user:GAUGE:120:0:100" ) ;
push ( @ tmp , "DS:proc" . $ n . "_nice:GAUGE:120:0:100" ) ;
push ( @ tmp , "DS:proc" . $ n . "_sys:GAUGE:120:0:100" ) ;
push ( @ tmp , "DS:proc" . $ n . "_idle:GAUGE:120:0:100" ) ;
push ( @ tmp , "DS:proc" . $ n . "_iow:GAUGE:120:0:100" ) ;
push ( @ tmp , "DS:proc" . $ n . "_irq:GAUGE:120:0:100" ) ;
push ( @ tmp , "DS:proc" . $ n . "_sirq:GAUGE:120:0:100" ) ;
push ( @ tmp , "DS:proc" . $ n . "_steal:GAUGE:120:0:100" ) ;
push ( @ tmp , "DS:proc" . $ n . "_guest:GAUGE:120:0:100" ) ;
}
eval {
RRDs:: create ( $ rrd ,
"--step=60" ,
@ tmp ,
"RRA:AVERAGE:0.5:1:1440" ,
"RRA:AVERAGE:0.5:30:336" ,
"RRA:AVERAGE:0.5:60:744" ,
2013-10-29 10:51:17 +00:00
@ average ,
2013-01-04 08:27:05 +00:00
"RRA:MIN:0.5:1:1440" ,
"RRA:MIN:0.5:30:336" ,
"RRA:MIN:0.5:60:744" ,
2013-10-29 10:51:17 +00:00
@ min ,
2013-01-04 08:27:05 +00:00
"RRA:MAX:0.5:1:1440" ,
"RRA:MAX:0.5:30:336" ,
"RRA:MAX:0.5:60:744" ,
2013-10-29 10:51:17 +00:00
@ max ,
2013-01-04 08:27:05 +00:00
"RRA:LAST:0.5:1:1440" ,
"RRA:LAST:0.5:30:336" ,
"RRA:LAST:0.5:60:744" ,
2013-10-29 10:51:17 +00:00
@ last ,
2013-01-04 08:27:05 +00:00
) ;
} ;
my $ err = RRDs:: error ;
if ( $@ || $ err ) {
logger ( "$@" ) unless ! $@ ;
if ( $ err ) {
logger ( "ERROR: while creating $rrd: $err" ) ;
if ( $ err eq "RRDs::error" ) {
logger ( "... is the RRDtool Perl package installed?" ) ;
}
}
return ;
}
}
$ config - > { proc_hist } = ( ) ;
push ( @ { $ config - > { func_update } } , $ package ) ;
logger ( "$myself: Ok" ) if $ debug ;
}
sub proc_update {
my $ myself = ( caller ( 0 ) ) [ 3 ] ;
my ( $ package , $ config , $ debug ) = @ _ ;
my $ rrd = $ config - > { base_lib } . $ package . ".rrd" ;
my $ proc = $ config - > { proc } ;
my @ procs ;
my $ total ;
2021-12-21 15:49:47 +00:00
2013-01-04 08:27:05 +00:00
my $ n ;
my @ lastproc ;
my @ p ;
my @ l ;
my $ rrdata = "N" ;
# Read last processor usage data
my $ str ;
for ( $ n = 0 ; $ n < $ proc - > { max } ; $ n + + ) {
$ str = "cpu" . $ n ;
if ( $ config - > { proc_hist } - > { $ str } ) {
push ( @ lastproc , $ config - > { proc_hist } - > { $ str } ) ;
}
}
if ( $ config - > { os } eq "Linux" ) {
open ( IN , "/proc/stat" ) ;
while ( <IN> ) {
for ( $ n = 0 ; $ n < $ proc - > { max } ; $ n + + ) {
$ str = "cpu" . $ n ;
if ( /^cpu$n / ) {
$ config - > { proc_hist } - > { $ str } = $ _ ;
chomp ( $ config - > { proc_hist } - > { $ str } ) ;
push ( @ procs , $ config - > { proc_hist } - > { $ str } ) ;
}
}
}
close ( IN ) ;
} elsif ( $ config - > { os } eq "FreeBSD" ) {
my $ cptimes ;
my @ tmp ;
my $ from ;
my $ to ;
my $ ncpu = `sysctl -n hw.ncpu` ;
open ( IN , "sysctl -n kern.cp_times |" ) ;
my @ data = split ( ' ' , <IN> ) ;
close ( IN ) ;
chomp ( $ ncpu ) ;
2014-01-17 11:35:30 +00:00
$ ncpu = min ( $ ncpu , $ proc - > { max } ) ;
for ( $ n = 0 ; $ n < $ ncpu ; $ n + + ) {
2013-01-04 08:27:05 +00:00
$ str = "cpu" . $ n ;
$ from = $ n * 5 ;
$ to = $ from + 4 ;
@ tmp = @ data [ $ from .. $ to ] ;
@ tmp [ 0 , 1 , 2 , 3 , 4 ] = @ tmp [ 0 , 1 , 2 , 4 , 3 ] ;
$ cptimes = join ( ' ' , @ tmp ) ;
chomp ( $ cptimes ) ;
$ cptimes = $ str . " " . $ cptimes ;
$ config - > { proc_hist } - > { $ str } = $ cptimes ;
push ( @ procs , $ cptimes ) ;
}
}
my @ deltas ;
for ( $ n = 0 ; $ n < $ proc - > { max } ; $ n + + ) {
if ( $ procs [ $ n ] ) {
@ p = split ( ' ' , $ procs [ $ n ] ) ;
@ l = ( 0 ) x 10 ;
@ l = split ( ' ' , $ lastproc [ $ n ] ) if $ lastproc [ $ n ] ;
@ deltas = (
# $p[0] and $l[0] are the 'cpu' word
2013-01-10 14:47:46 +00:00
( $ p [ 1 ] || 0 ) - ( $ l [ 1 ] || 0 ) , # user
( $ p [ 2 ] || 0 ) - ( $ l [ 2 ] || 0 ) , # nice
( $ p [ 3 ] || 0 ) - ( $ l [ 3 ] || 0 ) , # sys
( $ p [ 4 ] || 0 ) - ( $ l [ 4 ] || 0 ) , # idle
( $ p [ 5 ] || 0 ) - ( $ l [ 5 ] || 0 ) , # iow
( $ p [ 6 ] || 0 ) - ( $ l [ 6 ] || 0 ) , # irq
( $ p [ 7 ] || 0 ) - ( $ l [ 7 ] || 0 ) , # sirq
( $ p [ 8 ] || 0 ) - ( $ l [ 8 ] || 0 ) , # steal
( $ p [ 9 ] || 0 ) - ( $ l [ 9 ] || 0 ) , # guest
2013-01-04 08:27:05 +00:00
) ;
$ total = $ deltas [ 0 ] + $ deltas [ 1 ] + $ deltas [ 2 ] + $ deltas [ 3 ] + $ deltas [ 4 ] + $ deltas [ 5 ] + $ deltas [ 6 ] + $ deltas [ 7 ] + $ deltas [ 8 ] ;
undef ( @ p ) ;
push ( @ p , $ deltas [ 0 ] ? ( $ deltas [ 0 ] * 100 ) / $ total : 0 ) ;
push ( @ p , $ deltas [ 1 ] ? ( $ deltas [ 1 ] * 100 ) / $ total : 0 ) ;
push ( @ p , $ deltas [ 2 ] ? ( $ deltas [ 2 ] * 100 ) / $ total : 0 ) ;
push ( @ p , $ deltas [ 3 ] ? ( $ deltas [ 3 ] * 100 ) / $ total : 0 ) ;
push ( @ p , $ deltas [ 4 ] ? ( $ deltas [ 4 ] * 100 ) / $ total : 0 ) ;
push ( @ p , $ deltas [ 5 ] ? ( $ deltas [ 5 ] * 100 ) / $ total : 0 ) ;
push ( @ p , $ deltas [ 6 ] ? ( $ deltas [ 6 ] * 100 ) / $ total : 0 ) ;
push ( @ p , $ deltas [ 7 ] ? ( $ deltas [ 7 ] * 100 ) / $ total : 0 ) ;
push ( @ p , $ deltas [ 8 ] ? ( $ deltas [ 8 ] * 100 ) / $ total : 0 ) ;
$ procs [ $ n ] = join ( ' ' , @ p ) ;
} else {
$ procs [ $ n ] = join ( ' ' , ( 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ) ) ;
}
}
for ( $ n = 0 ; $ n < $ proc - > { max } ; $ n + + ) {
@ p = split ( ' ' , $ procs [ $ n ] ) ;
$ rrdata . = ":$p[0]:$p[1]:$p[2]:$p[3]:$p[4]:$p[5]:$p[6]:$p[7]:$p[8]" ;
}
RRDs:: update ( $ rrd , $ rrdata ) ;
logger ( "$myself: $rrdata" ) if $ debug ;
my $ err = RRDs:: error ;
logger ( "ERROR: while updating $rrd: $err" ) if $ err ;
}
sub proc_cgi {
my ( $ package , $ config , $ cgi ) = @ _ ;
2017-07-21 08:51:40 +01:00
my @ output ;
2013-01-04 08:27:05 +00:00
my $ proc = $ config - > { proc } ;
my $ kern = $ config - > { kern } ;
2014-06-18 09:06:10 +01:00
my @ rigid = split ( ',' , ( $ proc - > { rigid } || "" ) ) ;
my @ limit = split ( ',' , ( $ proc - > { limit } || "" ) ) ;
2013-01-04 08:27:05 +00:00
my $ tf = $ cgi - > { tf } ;
my $ colors = $ cgi - > { colors } ;
my $ graph = $ cgi - > { graph } ;
my $ silent = $ cgi - > { silent } ;
2013-07-29 17:03:13 +01:00
my $ zoom = "--zoom=" . $ config - > { global_zoom } ;
2014-12-30 16:07:42 +00:00
my % rrd = (
'new' = > \ & RRDs:: graphv ,
'old' = > \ & RRDs:: graph ,
) ;
my $ version = "new" ;
my $ pic ;
my $ picz ;
my $ picz_width ;
my $ picz_height ;
2013-01-04 08:27:05 +00:00
my $ u = "" ;
my $ width ;
my $ height ;
2019-05-08 11:54:03 +01:00
my @ extra ;
2013-01-04 08:27:05 +00:00
my @ riglim ;
2016-01-25 17:35:30 +00:00
my @ IMG ;
my @ IMGz ;
2013-01-04 08:27:05 +00:00
my @ tmp ;
my @ tmpz ;
2013-07-01 16:26:14 +01:00
my @ CDEF ;
2013-01-04 08:27:05 +00:00
my $ vlabel ;
my $ ncpu ;
my $ n ;
my $ n2 ;
my $ str ;
my $ err ;
2014-12-30 16:07:42 +00:00
$ version = "old" if $ RRDs:: VERSION < 1.3 ;
2013-01-04 08:27:05 +00:00
my $ rrd = $ config - > { base_lib } . $ package . ".rrd" ;
my $ title = $ config - > { graph_title } - > { $ package } ;
2016-01-25 17:35:30 +00:00
my $ IMG_DIR = $ config - > { base_dir } . "/" . $ config - > { imgs_dir } ;
my $ imgfmt_uc = uc ( $ config - > { image_format } ) ;
my $ imgfmt_lc = lc ( $ config - > { image_format } ) ;
2019-05-08 11:54:03 +01:00
foreach my $ i ( split ( ',' , $ config - > { rrdtool_extra_options } || "" ) ) {
push ( @ extra , trim ( $ i ) ) if trim ( $ i ) ;
}
2013-01-04 08:27:05 +00:00
$ title = ! $ silent ? $ title : "" ;
if ( $ config - > { os } eq "Linux" ) {
2016-08-15 21:58:17 +01:00
$ ncpu = `grep -e '^processor[[:space:]]*: [0-9]*' /proc/cpuinfo | tail -1 | awk '{ print \$3 }'` ;
2013-01-04 08:27:05 +00:00
chomp ( $ ncpu ) ;
$ ncpu + + ;
} elsif ( $ config - > { os } eq "FreeBSD" ) {
$ ncpu = `/sbin/sysctl -n hw.ncpu` ;
chomp ( $ ncpu ) ;
}
$ ncpu = $ ncpu > $ proc - > { max } ? $ proc - > { max } : $ ncpu ;
return unless $ ncpu > 1 ;
# text mode
#
if ( lc ( $ config - > { iface_mode } ) eq "text" ) {
if ( $ title ) {
2017-07-21 08:51:40 +01:00
push ( @ output , main:: graph_header ( $ title , 2 ) ) ;
push ( @ output , " <tr>\n" ) ;
2020-11-30 11:34:19 +00:00
push ( @ output , " <td>\n" ) ;
2013-01-04 08:27:05 +00:00
}
my ( undef , undef , undef , $ data ) = RRDs:: fetch ( "$rrd" ,
2019-11-22 07:46:02 +00:00
"--resolution=$tf->{res}" ,
2013-01-04 08:27:05 +00:00
"--start=-$tf->{nwhen}$tf->{twhen}" ,
2019-11-22 07:46:02 +00:00
"AVERAGE" ) ;
2013-01-04 08:27:05 +00:00
$ err = RRDs:: error ;
2017-07-21 08:51:40 +01:00
push ( @ output , "ERROR: while fetching $rrd: $err\n" ) if $ err ;
push ( @ output , " <pre style='font-size: 12px; color: $colors->{fg_color}';>\n" ) ;
2013-01-04 08:27:05 +00:00
for ( $ n = 0 ; $ n < $ ncpu ; $ n + + ) {
2017-07-21 08:51:40 +01:00
push ( @ output , " Processor " . sprintf ( "%3d" , $ n ) . " " ) ;
2013-01-04 08:27:05 +00:00
}
2017-07-21 08:51:40 +01:00
push ( @ output , "\nTime" ) ;
2013-01-04 08:27:05 +00:00
for ( $ n = 0 ; $ n < $ ncpu ; $ n + + ) {
2017-07-21 08:51:40 +01:00
push ( @ output , " User Nice Sys Idle I/Ow IRQ sIRQ Steal Guest" ) ;
2013-01-04 08:27:05 +00:00
}
2017-07-21 08:51:40 +01:00
push ( @ output , " \n----" ) ;
2013-01-04 08:27:05 +00:00
for ( $ n = 0 ; $ n < $ ncpu ; $ n + + ) {
2017-07-21 08:51:40 +01:00
push ( @ output , "-------------------------------------------------------" ) ;
2013-01-04 08:27:05 +00:00
}
2017-07-21 08:51:40 +01:00
push ( @ output , " \n" ) ;
2013-01-04 08:27:05 +00:00
my $ line ;
my @ row ;
my $ time ;
my $ from ;
my $ to ;
for ( $ n = 0 , $ time = $ tf - > { tb } ; $ n < ( $ tf - > { tb } * $ tf - > { ts } ) ; $ n + + ) {
$ line = @$ data [ $ n ] ;
$ time = $ time - ( 1 / $ tf - > { ts } ) ;
2017-07-21 08:51:40 +01:00
push ( @ output , sprintf ( " %2d$tf->{tc} " , $ time ) ) ;
2013-01-04 08:27:05 +00:00
for ( $ n2 = 0 ; $ n2 < $ ncpu ; $ n2 + + ) {
$ from = $ n2 * $ ncpu ;
$ to = $ from + $ ncpu ;
my ( $ usr , $ nic , $ sys , $ idle , $ iow , $ irq , $ sirq , $ steal , $ guest , ) = @$ line [ $ from .. $ to ] ;
@ row = ( $ usr , $ nic , $ sys , $ idle , $ iow , $ irq , $ sirq , $ steal , $ guest ) ;
2017-07-21 08:51:40 +01:00
push ( @ output , sprintf ( " %4.1f%% %4.1f%% %4.1f%% %4.1f%% %4.1f%% %4.1f%% %4.1f%% %4.1f%% %4.1f%% " , @ row ) ) ;
2013-01-04 08:27:05 +00:00
}
2017-07-21 08:51:40 +01:00
push ( @ output , "\n" ) ;
2013-01-04 08:27:05 +00:00
}
2017-07-21 08:51:40 +01:00
push ( @ output , " </pre>\n" ) ;
2013-01-04 08:27:05 +00:00
if ( $ title ) {
2017-07-21 08:51:40 +01:00
push ( @ output , " </td>\n" ) ;
push ( @ output , " </tr>\n" ) ;
push ( @ output , main:: graph_footer ( ) ) ;
2013-01-04 08:27:05 +00:00
}
2017-07-21 08:51:40 +01:00
push ( @ output , " <br>\n" ) ;
return @ output ;
2013-01-04 08:27:05 +00:00
}
# graph mode
#
if ( $ silent eq "yes" || $ silent eq "imagetag" ) {
$ colors - > { fg_color } = "#000000" ; # visible color for text mode
$ u = "_" ;
}
if ( $ silent eq "imagetagbig" ) {
$ colors - > { fg_color } = "#000000" ; # visible color for text mode
$ u = "" ;
}
for ( $ n = 0 ; $ n < $ ncpu ; $ n + + ) {
2016-01-25 17:35:30 +00:00
$ str = $ u . $ package . $ n . "." . $ tf - > { when } . ".$imgfmt_lc" ;
push ( @ IMG , $ str ) ;
unlink ( "$IMG_DIR" . $ str ) ;
2013-01-04 08:27:05 +00:00
if ( lc ( $ config - > { enable_zoom } ) eq "y" ) {
2016-01-25 17:35:30 +00:00
$ str = $ u . $ package . $ n . "z." . $ tf - > { when } . ".$imgfmt_lc" ;
push ( @ IMGz , $ str ) ;
unlink ( "$IMG_DIR" . $ str ) ;
2013-01-04 08:27:05 +00:00
}
}
2014-06-17 18:40:27 +01:00
@ riglim = @ { setup_riglim ( $ rigid [ 0 ] , $ limit [ 0 ] ) } ;
2013-01-04 08:27:05 +00:00
$ n = 0 ;
while ( $ n < $ ncpu ) {
if ( $ title ) {
if ( $ n == 0 ) {
2017-07-21 08:51:40 +01:00
push ( @ output , main:: graph_header ( $ title , $ proc - > { graphs_per_row } ) ) ;
2013-01-04 08:27:05 +00:00
}
2017-07-21 08:51:40 +01:00
push ( @ output , " <tr>\n" ) ;
2013-01-04 08:27:05 +00:00
}
for ( $ n2 = 0 ; $ n2 < $ proc - > { graphs_per_row } ; $ n2 + + ) {
last unless $ n < $ ncpu ;
if ( $ title ) {
2020-11-30 11:34:19 +00:00
push ( @ output , " <td>\n" ) ;
2013-01-04 08:27:05 +00:00
}
undef ( @ tmp ) ;
undef ( @ tmpz ) ;
2013-07-01 16:26:14 +01:00
undef ( @ CDEF ) ;
2013-01-04 08:27:05 +00:00
if ( lc ( $ kern - > { graph_mode } ) eq "r" ) {
$ vlabel = "Percent (%)" ;
if ( lc ( $ kern - > { list } - > { user } ) eq "y" ) {
push ( @ tmp , "AREA:user#4444EE:user" ) ;
push ( @ tmpz , "AREA:user#4444EE:user" ) ;
if ( lc ( $ proc - > { data } ) eq "y" ) {
push ( @ tmp , "GPRINT:user:LAST: Cur\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:user:AVERAGE: Avg\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:user:MIN: Min\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:user:MAX: Max\\: %4.1lf%%\\n" ) ;
}
}
if ( lc ( $ kern - > { list } - > { nice } ) eq "y" ) {
push ( @ tmp , "AREA:nice#EEEE44:nice" ) ;
push ( @ tmpz , "AREA:nice#EEEE44:nice" ) ;
if ( lc ( $ proc - > { data } ) eq "y" ) {
push ( @ tmp , "GPRINT:nice:LAST: Cur\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:nice:AVERAGE: Avg\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:nice:MIN: Min\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:nice:MAX: Max\\: %4.1lf%%\\n" ) ;
}
}
if ( lc ( $ kern - > { list } - > { sys } ) eq "y" ) {
push ( @ tmp , "AREA:sys#44EEEE:system" ) ;
push ( @ tmpz , "AREA:sys#44EEEE:system" ) ;
if ( lc ( $ proc - > { data } ) eq "y" ) {
push ( @ tmp , "GPRINT:sys:LAST: Cur\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:sys:AVERAGE: Avg\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:sys:MIN: Min\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:sys:MAX: Max\\: %4.1lf%%\\n" ) ;
}
}
if ( lc ( $ kern - > { list } - > { iow } ) eq "y" ) {
push ( @ tmp , "AREA:iow#EE44EE:I/O wait" ) ;
push ( @ tmpz , "AREA:iow#EE44EE:I/O wait" ) ;
if ( lc ( $ proc - > { data } ) eq "y" ) {
push ( @ tmp , "GPRINT:iow:LAST:Cur\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:iow:AVERAGE: Avg\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:iow:MIN: Min\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:iow:MAX: Max\\: %4.1lf%%\\n" ) ;
}
}
if ( lc ( $ kern - > { list } - > { irq } ) eq "y" ) {
push ( @ tmp , "AREA:irq#888888:IRQ" ) ;
push ( @ tmpz , "AREA:irq#888888:IRQ" ) ;
if ( lc ( $ proc - > { data } ) eq "y" ) {
push ( @ tmp , "GPRINT:irq:LAST: Cur\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:irq:AVERAGE: Avg\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:irq:MIN: Min\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:irq:MAX: Max\\: %4.1lf%%\\n" ) ;
}
}
if ( lc ( $ kern - > { list } - > { sirq } ) eq "y" ) {
push ( @ tmp , "AREA:sirq#E29136:softIRQ" ) ;
push ( @ tmpz , "AREA:sirq#E29136:softIRQ" ) ;
if ( lc ( $ proc - > { data } ) eq "y" ) {
push ( @ tmp , "GPRINT:sirq:LAST: Cur\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:sirq:AVERAGE: Avg\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:sirq:MIN: Min\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:sirq:MAX: Max\\: %4.1lf%%\\n" ) ;
}
}
if ( lc ( $ kern - > { list } - > { steal } ) eq "y" ) {
push ( @ tmp , "AREA:steal#44EE44:steal" ) ;
push ( @ tmpz , "AREA:steal#44EE44:steal" ) ;
if ( lc ( $ proc - > { data } ) eq "y" ) {
push ( @ tmp , "GPRINT:steal:LAST: Cur\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:steal:AVERAGE: Avg\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:steal:MIN: Min\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:steal:MAX: Max\\: %4.1lf%%\\n" ) ;
}
}
if ( lc ( $ kern - > { list } - > { guest } ) eq "y" ) {
push ( @ tmp , "AREA:guest#448844:guest" ) ;
push ( @ tmpz , "AREA:guest#448844:guest" ) ;
if ( lc ( $ proc - > { data } ) eq "y" ) {
push ( @ tmp , "GPRINT:guest:LAST: Cur\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:guest:AVERAGE: Avg\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:guest:MIN: Min\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:guest:MAX: Max\\: %4.1lf%%\\n" ) ;
}
}
push ( @ tmp , "LINE1:guest#1F881F" ) unless lc ( $ kern - > { list } - > { guest } ) ne "y" ;
push ( @ tmpz , "LINE1:guest#1F881F" ) unless lc ( $ kern - > { list } - > { guest } ) ne "y" ;
push ( @ tmp , "LINE1:steal#00EE00" ) unless lc ( $ kern - > { list } - > { steal } ) ne "y" ;
push ( @ tmpz , "LINE1:steal#00EE00" ) unless lc ( $ kern - > { list } - > { steal } ) ne "y" ;
push ( @ tmp , "LINE1:sirq#D86612" ) unless lc ( $ kern - > { list } - > { sirq } ) ne "y" ;
push ( @ tmpz , "LINE1:sirq#D86612" ) unless lc ( $ kern - > { list } - > { sirq } ) ne "y" ;
push ( @ tmp , "LINE1:irq#CCCCCC" ) unless lc ( $ kern - > { list } - > { irq } ) ne "y" ;
push ( @ tmpz , "LINE1:irq#CCCCCC" ) unless lc ( $ kern - > { list } - > { irq } ) ne "y" ;
push ( @ tmp , "LINE1:iow#EE00EE" ) unless lc ( $ kern - > { list } - > { iow } ) ne "y" ;
push ( @ tmpz , "LINE1:iow#EE00EE" ) unless lc ( $ kern - > { list } - > { iow } ) ne "y" ;
push ( @ tmp , "LINE1:sys#00EEEE" ) unless lc ( $ kern - > { list } - > { sys } ) ne "y" ;
push ( @ tmpz , "LINE1:sys#00EEEE" ) unless lc ( $ kern - > { list } - > { sys } ) ne "y" ;
push ( @ tmp , "LINE1:nice#EEEE00" ) unless lc ( $ kern - > { list } - > { nice } ) ne "y" ;
push ( @ tmpz , "LINE1:nice#EEEE00" ) unless lc ( $ kern - > { list } - > { nice } ) ne "y" ;
push ( @ tmp , "LINE1:user#0000EE" ) unless lc ( $ kern - > { list } - > { user } ) ne "y" ;
push ( @ tmpz , "LINE1:user#0000EE" ) unless lc ( $ kern - > { list } - > { user } ) ne "y" ;
} else {
$ vlabel = "Stacked Percent (%)" ;
push ( @ tmp , "CDEF:s_nice=user,nice,+" ) ;
push ( @ tmpz , "CDEF:s_nice=user,nice,+" ) ;
push ( @ tmp , "CDEF:s_sys=s_nice,sys,+" ) ;
push ( @ tmpz , "CDEF:s_sys=s_nice,sys,+" ) ;
push ( @ tmp , "CDEF:s_iow=s_sys,iow,+" ) ;
push ( @ tmpz , "CDEF:s_iow=s_sys,iow,+" ) ;
push ( @ tmp , "CDEF:s_irq=s_iow,irq,+" ) ;
push ( @ tmpz , "CDEF:s_irq=s_iow,irq,+" ) ;
push ( @ tmp , "CDEF:s_sirq=s_irq,sirq,+" ) ;
push ( @ tmpz , "CDEF:s_sirq=s_irq,sirq,+" ) ;
push ( @ tmp , "CDEF:s_steal=s_sirq,steal,+" ) ;
push ( @ tmpz , "CDEF:s_steal=s_sirq,steal,+" ) ;
push ( @ tmp , "CDEF:s_guest=s_steal,guest,+" ) ;
push ( @ tmpz , "CDEF:s_guest=s_steal,guest,+" ) ;
if ( lc ( $ kern - > { list } - > { guest } ) eq "y" ) {
push ( @ tmp , "AREA:s_guest#E29136:guest" ) ;
push ( @ tmpz , "AREA:s_guest#E29136:guest" ) ;
if ( lc ( $ proc - > { data } ) eq "y" ) {
push ( @ tmp , "GPRINT:guest:LAST: Cur\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:guest:AVERAGE: Avg\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:guest:MIN: Min\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:guest:MAX: Max\\: %4.1lf%%\\n" ) ;
}
}
if ( lc ( $ kern - > { list } - > { steal } ) eq "y" ) {
push ( @ tmp , "AREA:s_steal#888888:steal" ) ;
push ( @ tmpz , "AREA:s_steal#888888:steal" ) ;
if ( lc ( $ proc - > { data } ) eq "y" ) {
push ( @ tmp , "GPRINT:steal:LAST: Cur\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:steal:AVERAGE: Avg\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:steal:MIN: Min\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:steal:MAX: Max\\: %4.1lf%%\\n" ) ;
}
}
if ( lc ( $ kern - > { list } - > { sirq } ) eq "y" ) {
push ( @ tmp , "AREA:s_sirq#448844:softIRQ" ) ;
push ( @ tmpz , "AREA:s_sirq#448844:softIRQ" ) ;
if ( lc ( $ proc - > { data } ) eq "y" ) {
push ( @ tmp , "GPRINT:sirq:LAST: Cur\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:sirq:AVERAGE: Avg\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:sirq:MIN: Min\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:sirq:MAX: Max\\: %4.1lf%%\\n" ) ;
}
}
if ( lc ( $ kern - > { list } - > { irq } ) eq "y" ) {
push ( @ tmp , "AREA:s_irq#44EE44:IRQ" ) ;
push ( @ tmpz , "AREA:s_irq#44EE44:IRQ" ) ;
if ( lc ( $ proc - > { data } ) eq "y" ) {
push ( @ tmp , "GPRINT:irq:LAST: Cur\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:irq:AVERAGE: Avg\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:irq:MIN: Min\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:irq:MAX: Max\\: %4.1lf%%\\n" ) ;
}
}
if ( lc ( $ kern - > { list } - > { iow } ) eq "y" ) {
push ( @ tmp , "AREA:s_iow#EE44EE:I/O wait" ) ;
push ( @ tmpz , "AREA:s_iow#EE44EE:I/O wait" ) ;
if ( lc ( $ proc - > { data } ) eq "y" ) {
push ( @ tmp , "GPRINT:iow:LAST:Cur\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:iow:AVERAGE: Avg\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:iow:MIN: Min\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:iow:MAX: Max\\: %4.1lf%%\\n" ) ;
}
}
if ( lc ( $ kern - > { list } - > { sys } ) eq "y" ) {
push ( @ tmp , "AREA:s_sys#44EEEE:system" ) ;
push ( @ tmpz , "AREA:s_sys#44EEEE:system" ) ;
if ( lc ( $ proc - > { data } ) eq "y" ) {
push ( @ tmp , "GPRINT:sys:LAST: Cur\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:sys:AVERAGE: Avg\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:sys:MIN: Min\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:sys:MAX: Max\\: %4.1lf%%\\n" ) ;
}
}
if ( lc ( $ kern - > { list } - > { nice } ) eq "y" ) {
push ( @ tmp , "AREA:s_nice#EEEE44:nice" ) ;
push ( @ tmpz , "AREA:s_nice#EEEE44:nice" ) ;
if ( lc ( $ proc - > { data } ) eq "y" ) {
push ( @ tmp , "GPRINT:nice:LAST: Cur\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:nice:AVERAGE: Avg\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:nice:MIN: Min\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:nice:MAX: Max\\: %4.1lf%%\\n" ) ;
}
}
if ( lc ( $ kern - > { list } - > { user } ) eq "y" ) {
push ( @ tmp , "AREA:user#4444EE:user" ) ;
push ( @ tmpz , "AREA:user#4444EE:user" ) ;
if ( lc ( $ proc - > { data } ) eq "y" ) {
push ( @ tmp , "GPRINT:user:LAST: Cur\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:user:AVERAGE: Avg\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:user:MIN: Min\\: %4.1lf%%" ) ;
push ( @ tmp , "GPRINT:user:MAX: Max\\: %4.1lf%%\\n" ) ;
}
}
push ( @ tmp , "LINE1:s_guest#D86612" ) ;
push ( @ tmpz , "LINE1:s_guest#D86612" ) ;
push ( @ tmp , "LINE1:s_steal#CCCCCC" ) ;
push ( @ tmpz , "LINE1:s_steal#CCCCCC" ) ;
push ( @ tmp , "LINE1:s_sirq#1F881F" ) ;
push ( @ tmpz , "LINE1:s_sirq#1F881F" ) ;
push ( @ tmp , "LINE1:s_irq#00EE00" ) ;
push ( @ tmpz , "LINE1:s_irq#00EE00" ) ;
push ( @ tmp , "LINE1:s_iow#EE00EE" ) ;
push ( @ tmpz , "LINE1:s_iow#EE00EE" ) ;
push ( @ tmp , "LINE1:s_sys#00EEEE" ) ;
push ( @ tmpz , "LINE1:s_sys#00EEEE" ) ;
push ( @ tmp , "LINE1:s_nice#EEEE00" ) ;
push ( @ tmpz , "LINE1:s_nice#EEEE00" ) ;
push ( @ tmp , "LINE1:user#0000EE" ) ;
push ( @ tmpz , "LINE1:user#0000EE" ) ;
}
2013-07-01 16:26:14 +01:00
if ( lc ( $ config - > { show_gaps } ) eq "y" ) {
push ( @ tmp , "AREA:wrongdata#$colors->{gap}:" ) ;
push ( @ tmpz , "AREA:wrongdata#$colors->{gap}:" ) ;
push ( @ CDEF , "CDEF:wrongdata=allvalues,UN,INF,UNKN,IF" ) ;
}
2013-01-04 08:27:05 +00:00
( $ width , $ height ) = split ( 'x' , $ config - > { graph_size } - > { $ proc - > { size } } ) ;
2016-01-25 17:35:30 +00:00
$ pic = $ rrd { $ version } - > ( "$IMG_DIR" . "$IMG[$n]" ,
2013-01-04 08:27:05 +00:00
"--title=$config->{graphs}->{_proc} $n ($tf->{nwhen}$tf->{twhen})" ,
"--start=-$tf->{nwhen}$tf->{twhen}" ,
2016-01-25 17:35:30 +00:00
"--imgformat=$imgfmt_uc" ,
2013-01-04 08:27:05 +00:00
"--vertical-label=$vlabel" ,
"--width=$width" ,
"--height=$height" ,
2019-05-08 11:54:03 +01:00
@ extra ,
2013-01-04 08:27:05 +00:00
@ riglim ,
2013-07-29 17:03:13 +01:00
$ zoom ,
2013-01-04 08:27:05 +00:00
@ { $ cgi - > { version12 } } ,
@ { $ colors - > { graph_colors } } ,
"DEF:user=$rrd:proc" . $ n . "_user:AVERAGE" ,
"DEF:nice=$rrd:proc" . $ n . "_nice:AVERAGE" ,
"DEF:sys=$rrd:proc" . $ n . "_sys:AVERAGE" ,
"DEF:iow=$rrd:proc" . $ n . "_iow:AVERAGE" ,
"DEF:irq=$rrd:proc" . $ n . "_irq:AVERAGE" ,
"DEF:sirq=$rrd:proc" . $ n . "_sirq:AVERAGE" ,
"DEF:steal=$rrd:proc" . $ n . "_steal:AVERAGE" ,
"DEF:guest=$rrd:proc" . $ n . "_guest:AVERAGE" ,
2013-07-01 16:26:14 +01:00
"CDEF:allvalues=user,nice,sys,iow,irq,sirq,steal,guest,+,+,+,+,+,+,+" ,
@ CDEF ,
2013-01-04 08:27:05 +00:00
@ tmp ) ;
$ err = RRDs:: error ;
2017-07-21 08:51:40 +01:00
push ( @ output , "ERROR: while graphing $IMG_DIR" . "$IMG[$n]: $err\n" ) if $ err ;
2013-01-04 08:27:05 +00:00
if ( lc ( $ config - > { enable_zoom } ) eq "y" ) {
( $ width , $ height ) = split ( 'x' , $ config - > { graph_size } - > { zoom } ) ;
2016-01-25 17:35:30 +00:00
$ picz = $ rrd { $ version } - > ( "$IMG_DIR" . "$IMGz[$n]" ,
2013-01-04 08:27:05 +00:00
"--title=$config->{graphs}->{_proc} $n ($tf->{nwhen}$tf->{twhen})" ,
"--start=-$tf->{nwhen}$tf->{twhen}" ,
2016-01-25 17:35:30 +00:00
"--imgformat=$imgfmt_uc" ,
2013-01-04 08:27:05 +00:00
"--vertical-label=$vlabel" ,
"--width=$width" ,
"--height=$height" ,
2021-12-21 23:08:14 +00:00
"--full-size-mode" ,
2019-05-08 11:54:03 +01:00
@ extra ,
2013-01-04 08:27:05 +00:00
@ riglim ,
2014-12-30 16:07:42 +00:00
$ zoom ,
2013-01-04 08:27:05 +00:00
@ { $ cgi - > { version12 } } ,
@ { $ colors - > { graph_colors } } ,
"DEF:user=$rrd:proc" . $ n . "_user:AVERAGE" ,
"DEF:nice=$rrd:proc" . $ n . "_nice:AVERAGE" ,
"DEF:sys=$rrd:proc" . $ n . "_sys:AVERAGE" ,
"DEF:iow=$rrd:proc" . $ n . "_iow:AVERAGE" ,
"DEF:irq=$rrd:proc" . $ n . "_irq:AVERAGE" ,
"DEF:sirq=$rrd:proc" . $ n . "_sirq:AVERAGE" ,
"DEF:steal=$rrd:proc" . $ n . "_steal:AVERAGE" ,
"DEF:guest=$rrd:proc" . $ n . "_guest:AVERAGE" ,
2013-07-01 16:26:14 +01:00
"CDEF:allvalues=user,nice,sys,iow,irq,sirq,steal,guest,+,+,+,+,+,+,+" ,
@ CDEF ,
2013-01-04 08:27:05 +00:00
@ tmpz ) ;
$ err = RRDs:: error ;
2017-07-21 08:51:40 +01:00
push ( @ output , "ERROR: while graphing $IMG_DIR" . "$IMGz[$n]: $err\n" ) if $ err ;
2013-01-04 08:27:05 +00:00
}
if ( $ title || ( $ silent =~ /imagetag/ && $ graph =~ /proc$n/ ) ) {
if ( lc ( $ config - > { enable_zoom } ) eq "y" ) {
if ( lc ( $ config - > { disable_javascript_void } ) eq "y" ) {
2021-12-22 00:24:55 +00:00
push ( @ output , " " . picz_a_element ( config = > $ config , IMGz = > $ IMGz [ $ n ] , IMG = > $ IMG [ $ n ] ) . "\n" ) ;
2015-02-12 15:27:03 +00:00
} else {
2014-12-30 16:07:42 +00:00
if ( $ version eq "new" ) {
$ picz_width = $ picz - > { image_width } * $ config - > { global_zoom } ;
$ picz_height = $ picz - > { image_height } * $ config - > { global_zoom } ;
} else {
$ picz_width = $ width + 115 ;
$ picz_height = $ height + 100 ;
}
2021-12-22 00:24:55 +00:00
push ( @ output , " " . picz_js_a_element ( width = > $ picz_width , height = > $ picz_height , config = > $ config , IMGz = > $ IMGz [ $ n ] , IMG = > $ IMG [ $ n ] ) . "\n" ) ;
2013-01-04 08:27:05 +00:00
}
} else {
2021-12-22 00:24:55 +00:00
push ( @ output , " " . img_element ( config = > $ config , IMG = > $ IMG [ $ n ] ) . "\n" ) ;
2013-01-04 08:27:05 +00:00
}
}
if ( $ title ) {
2017-07-21 08:51:40 +01:00
push ( @ output , " </td>\n" ) ;
2013-01-04 08:27:05 +00:00
}
$ n + + ;
}
if ( $ title ) {
2017-07-21 08:51:40 +01:00
push ( @ output , " </tr>\n" ) ;
2013-01-04 08:27:05 +00:00
}
}
if ( $ title ) {
2017-07-21 08:51:40 +01:00
push ( @ output , main:: graph_footer ( ) ) ;
2013-01-04 08:27:05 +00:00
}
2017-07-21 08:51:40 +01:00
push ( @ output , " <br>\n" ) ;
return @ output ;
2013-01-04 08:27:05 +00:00
}
1 ;