$hrSystem[0]['hrSystemProcesses'], ); rrdtool_update($rrd_file, $fields); $graphs['hr_processes'] = true; echo ' Processes'; } if (is_numeric($hrSystem[0]['hrSystemNumUsers'])) { $rrd_file = $config['rrd_dir'].'/'.$device['hostname'].'/hr_users.rrd'; if (!is_file($rrd_file)) { rrdtool_create( $rrd_file, '--step 300 \ DS:users:GAUGE:600:0:U '.$config['rrd_rra'] ); } $fields = array( 'users' => $hrSystem[0]['hrSystemNumUsers'], ); rrdtool_update($rrd_file, $fields); $graphs['hr_users'] = true; echo ' Users'; } echo "\n";