diff --git a/pandora_agents/ChangeLog b/pandora_agents/ChangeLog index c66bc0da34..aede8cb2b8 100644 --- a/pandora_agents/ChangeLog +++ b/pandora_agents/ChangeLog @@ -1,3 +1,14 @@ +2007-06-25 Sancho Lerena + + * linux/pandora_agent_installer: Fixed problems with old "contrib" + subdir. + + * */pandora_agent: Removed from/to time run functionality. Added + renice call, fixed some default vars and fixed DEBUG mode + behaviour. + + * */pandora_agent.conf: Default are to no renice and not debug. + 2007-06-18 Manuel Arostegui * linux/pandora_agent_installer: Fixed a bug related diff --git a/pandora_agents/aix/pandora_agent b/pandora_agents/aix/pandora_agent index 657f9dda3b..de3fda106b 100755 --- a/pandora_agents/aix/pandora_agent +++ b/pandora_agents/aix/pandora_agent @@ -1,7 +1,7 @@ #!/usr/bin/ksh # ********************************************************************** # Pandora Agent for AIX -# v1.2 +# v1.3 # (c) Sancho Lerena 2003-2006, slerena@gmail.com # Este codigo esta licenciado bajo la licencia GPL 2.0 o posterior # This code is licenced under GPL 2.0 licence or later @@ -42,12 +42,11 @@ echo "$TIMESTAMP - Reading general config parameters from .conf file" >> $PANDOR # Default values DEBUG_MODE=0 CHECKSUM_MODE=0 -MIN_HOUR=0 -MAX_HOUR=0 DELAYED_STARTUP=0 PANDORA_NICE=0 TRANSFER_MODE=ssh IFS=$NEWIFS + for a in `cat $PANDORA_HOME/pandora_agent.conf | grep -v "^#" | grep -v "^module" ` do a=`echo $a | tr -s " " " "` @@ -92,16 +91,6 @@ if [ ! -z "`echo $a | grep -e '^transfer_mode'`" ] TRANSFER_MODE=`echo $a | awk '{ print $2 }' ` echo "$TIMESTAMP - [SETUP] - Transfer Mode is $TRANSFER_MODE" >> $PANDORA_LOGFILE fi - if [ ! -z "`echo $a | grep -e '^min_hour'`" ] - then - MIN_HOUR=`echo $a | awk '{ print $2 }' ` - echo "$TIMESTAMP - [SETUP] - MIN_HOUR is $MIN_HOUR" >> $PANDORA_LOGFILE - fi - if [ ! -z "`echo $a | grep -e '^max_hour'`" ] - then - MAX_HOUR=`echo $a | awk '{ print $2 }' ` - echo "$TIMESTAMP - [SETUP] - MAX_HOUR is $MAX_HOUR" >> $PANDORA_LOGFILE - fi if [ ! -z "`echo $a | grep -e '^delayed_startup'`" ] then DELAYED_STARTUP=`echo $a | awk '{ print $2 }' ` @@ -139,26 +128,12 @@ then sleep $(($DELAYED_STARTUP*60)) fi -while [ 1 ] -do - # Check for an appropiate time to execute (5min intervals) - if [ $MAX_HOUR != $MIN_HOUR ] - CURRENT_HOUR=`date +"%H"` - then - while [ $CURRENT_HOUR -lt $MIN_HOUR ] || [ $CURRENT_HOUR -gt $MAX_HOUR ] - do - echo "Waiting to valid time ($MIN_HOUR - $MAX_HOUR, current $CURRENT_HOUR)" - echo "Waiting to valid time ($MIN_HOUR - $MAX_HOUR, current $CURRENT_HOUR)" >> $PANDORA_LOGFILE.err - sleep 300 - done - fi - - # MAIN Program loop begin # OS Data OS_VERSION=`uname -v` OS_VERSION=$OS_VERSION.`uname -r` OS_NAME=`uname -s` + # Hostname if [ -z "$NOMBRE_HOST" ] then @@ -170,6 +145,9 @@ CONTADOR=0 EXECUTE=1 MODULE_END=0 +# Renice me +renice $PANDORA_NICE $$ + while [ "1" = "1" ] do # Fecha y hora. Se genera un serial (numero de segundos desde 1970) para cada paquete generado. @@ -295,48 +273,48 @@ do /bin/sh $PANDORA_HOME/pandora_user.conf >> $DATA 2> /dev/null fi - # Finish data packet - echo "" >> $DATA - echo "$TIMESTAMP - Finish writing XML $DATA" >> $DEBUGOUTPUT - # Calculate Checksum and prepare MD5 file - if [ "$CHECKSUM_MODE" = 1 ] - then - CHECKSUM_DATA=`cat $DATA | md5 ` - echo $CHECKSUM_DATA $DATA> $CHECKSUM - else - echo "NO MD5 CHECKSUM AVAILABLE" > $CHECKSUM - fi - # Send packets to server and delete it - #scp $PANDORA_FILES pandora@$SERVER_IP:$SERVER_PATH - #if [ "$DEBUG_MODE" = 1 ] - #then - # echo "$TIMESTAMP - DEBUG :Copying $PANDORA_FILES to $SERVER_IP:$SERVER_PATH" >> $PANDORA_HOME/pandora.log - # else - # Send packets to server and detele it - if [ "$TRANSFER_MODE" = "ssh" ] + # Finish data packet + echo "" >> $DATA + echo "$TIMESTAMP - Finish writing XML $DATA" >> $DEBUGOUTPUT + + # Calculate Checksum and prepare MD5 file + if [ "$CHECKSUM_MODE" = 1 ] + then + CHECKSUM_DATA=`cat $DATA | md5 ` + echo $CHECKSUM_DATA $DATA> $CHECKSUM + else + echo "NO MD5 CHECKSUM AVAILABLE" > $CHECKSUM + fi + + # Debug mode + if [ "$DEBUG_MODE" = "1" ] then - scp -P $SERVER_PORT $PANDORA_FILES pandora@$SERVER_IP:$SERVER_PATH > /dev/null 2> $PANDORA_LOGFILE.err + echo "$TIMESTAMP - Finish writing XML $DATA" >> $PANDORA_LOGFILE + echo "(**) Data file is at $DATA - Exiting now" + echo " " + exit 0 fi - if [ "$TRANSFER_MODE" = "ftp" ] - then - ftp SERVER_IP > /dev/null 2> $PANDORA_LOGFILE.err - fi + # Send packets to server and detele it + if [ "$TRANSFER_MODE" = "ssh" ] + then + scp -P $SERVER_PORT $PANDORA_FILES pandora@$SERVER_IP:$SERVER_PATH > /dev/null 2> $PANDORA_LOGFILE.err + fi - if [ "$TRANSFER_MODE" = "local" ] - then - cp $PANDORA_FILES $SERVER_PATH > /dev/null 2> $PANDORA_LOGFILE.err - fi + if [ "$TRANSFER_MODE" = "ftp" ] + then + ftp SERVER_IP > /dev/null 2> $PANDORA_LOGFILE.err + fi - # Delete data + if [ "$TRANSFER_MODE" = "local" ] + then + cp $PANDORA_FILES $SERVER_PATH > /dev/null 2> $PANDORA_LOGFILE.err + fi + + # Delete data rm -f $PANDORA_FILES > /dev/null 2> $PANDORA_LOGFILE.err - - - - # Delete it - rm -f $PANDORA_FILES> /dev/null + # Go to bed :-) sleep $INTERVAL done -done # forever! diff --git a/pandora_agents/aix/pandora_agent.conf b/pandora_agents/aix/pandora_agent.conf index afe538e2bf..dac61cfaa5 100755 --- a/pandora_agents/aix/pandora_agent.conf +++ b/pandora_agents/aix/pandora_agent.conf @@ -11,7 +11,7 @@ pandora_path /usr/share/pandora_agent temporal /var/spool/pandora/data_out interval 300 checksum 0 -debug 1 +debug 0 # By default is 22 (for ssh) #server_port 22 @@ -24,16 +24,8 @@ transfer_mode ssh #delayed_startup 90 #Pandora nice defines priority of execution. Less priority means more intensive execution -#A recommended value is 10. 0 priority means no Pandora CPU protection enabled -pandora_nice 10 - -# min_hour, defines mininum valid hour to allow Pandora agent execution - -min_hour 9 - -# max_hour, defines maximum valid hour to allow Pandora agent execution - -max_hour 18 +#A recommended value for stressed sytems is 10. 0 priority means no Pandora CPU protection enabled +#pandora_nice 0 # Module Definition # ================= diff --git a/pandora_agents/linux/pandora_agent b/pandora_agents/linux/pandora_agent index 1ab8039643..5e4b0bb40a 100755 --- a/pandora_agents/linux/pandora_agent +++ b/pandora_agents/linux/pandora_agent @@ -1,13 +1,14 @@ #!/bin/bash # ********************************************************************** # Pandora FMS Generic Host Agent -# GNU/Linux version +# GNU/Linux version 1.3 # (c) 2003-2007 Sancho Lerena # with the help of many people. Please see http://pandora.sourceforge.net # This code is licensed under GPL 2.0 license. # ********************************************************************** -AGENT_VERSION=1.3-dev -AGENT_BUILD=070421 + +AGENT_VERSION=1.3 +AGENT_BUILD=070725 if [ -z "$1" ] then @@ -39,11 +40,9 @@ IFS=$'\n' # Default values CHECKSUM_MODE=1 DEBUG_MODE=0 -MIN_HOUR=0 -MAX_HOUR=0 DELAYED_STARTUP=0 SERVER_PORT=22 -PANDORA_NICE=10 +PANDORA_NICE=0 INTERVAL=300 TRANSFER_MODE=ssh if [ -z "`echo $LANG | grep '\.'`" ] @@ -52,6 +51,7 @@ then else ENCODING=`echo $LANG | cut -f 2 -d "."` fi + NOMBRE_HOST=`/bin/hostname` OS_NAME=`uname -s` PANDORA_LOGFILE=/var/log/pandora_agent.log @@ -119,16 +119,6 @@ do TRANSFER_MODE=`echo $a | awk '{ print $2 }' ` echo "$TIMESTAMP - [SETUP] - Transfer Mode is $TRANSFER_MODE" >> $PANDORA_LOGFILE fi - if [ ! -z "`echo $a | grep -e '^min_hour'`" ] - then - MIN_HOUR=`echo $a | awk '{ print $2 }' ` - echo "$TIMESTAMP - [SETUP] - MIN_HOUR is $MIN_HOUR" >> $PANDORA_LOGFILE - fi - if [ ! -z "`echo $a | grep -e '^max_hour'`" ] - then - MAX_HOUR=`echo $a | awk '{ print $2 }' ` - echo "$TIMESTAMP - [SETUP] - MAX_HOUR is $MAX_HOUR" >> $PANDORA_LOGFILE - fi if [ ! -z "`echo $a | grep -e '^delayed_startup'`" ] then DELAYED_STARTUP=`echo $a | awk '{ print $2 }' ` @@ -204,19 +194,8 @@ then sleep $(($DELAYED_STARTUP*60)) fi -while [ 1 ] -do - # Check for an appropiate time to execute (5min intervals) - if [ $MAX_HOUR != $MIN_HOUR ] - CURRENT_HOUR=`date +"%H"` - then - while [ $CURRENT_HOUR -lt $MIN_HOUR ] || [ $CURRENT_HOUR -gt $MAX_HOUR ] - do - echo "Waiting to valid time ($MIN_HOUR - $MAX_HOUR, current $CURRENT_HOUR)" >> $PANDORA_LOGFILE.err - sleep 300 - done - fi - +# Renice me +renice $PANDORA_NICE $$ # MAIN Program loop begin @@ -392,5 +371,4 @@ do # Go to bed :-) sleep $INTERVAL done -done # This runs forever! diff --git a/pandora_agents/linux/pandora_agent.conf b/pandora_agents/linux/pandora_agent.conf index 8cd37de5aa..4fac5b543c 100755 --- a/pandora_agents/linux/pandora_agent.conf +++ b/pandora_agents/linux/pandora_agent.conf @@ -41,15 +41,7 @@ transfer_mode ssh #Pandora nice defines priority of execution. Less priority means more intensive execution #A recommended value is 10. 0 priority means no Pandora CPU protection enabled -pandora_nice 10 - -# min_hour, defines mininum valid hour to allow Pandora agent execution - -min_hour 9 - -# max_hour, defines maximum valid hour to allow Pandora agent execution - -max_hour 14 +#pandora_nice 0 # Module Definition diff --git a/pandora_agents/linux/pandora_agent_installer b/pandora_agents/linux/pandora_agent_installer index ccb800b257..5a98eeccde 100755 --- a/pandora_agents/linux/pandora_agent_installer +++ b/pandora_agents/linux/pandora_agent_installer @@ -101,8 +101,8 @@ install () { chmod -R 600 $PANDORA_TEMP/data_out chmod 640 $PANDORA_LOG chgrp 3 $PANDORA_LOG - echo "Linking start-up daemon script at $PANDORA_STARTUP"; - ln -s $PANDORA_HOME/pandora_agent_daemon $PANDORA_STARTUP + echo "Copyng start-up daemon script at $PANDORA_STARTUP"; + cp pandora_agent_daemon $PANDORA_STARTUP chown -R root $PANDORA_BIN echo "Done." echo " " diff --git a/pandora_agents/solaris/pandora_agent b/pandora_agents/solaris/pandora_agent index d3ded3ac53..f32e17ee46 100755 --- a/pandora_agents/solaris/pandora_agent +++ b/pandora_agents/solaris/pandora_agent @@ -1,7 +1,7 @@ #!/usr/bin/ksh # ********************************************************************** # Pandora Agent for Solaris -# v1.2 +# v1.3 # (c) Sancho Lerena 2003-2006, slerena@gmail.com # Este codigo esta licenciado bajo la licencia GPL 2.0 o posterior # This code is licenced under GPL 2.0 licence @@ -42,11 +42,9 @@ echo "$TIMESTAMP - Reading general config parameters from .conf file" >> $PANDOR # Default values DEBUG_MODE=0 CHECKSUM_MODE=0 -MIN_HOUR=0 -MAX_HOUR=0 DELAYED_STARTUP=0 SERVER_PORT=22 -PANDORA_NICE=10 +PANDORA_NICE=20 INTERVAL=300 TRANSFER_MODE=ssh @@ -91,28 +89,19 @@ do CHECKSUM_MODE=`echo $a | awk '{ print $2 }' ` echo "$TIMESTAMP - [SETUP] - Checksum mode is $CHECKSUM_MODE " >> $PANDORA_HOME/pandora.log fi - if [ ! -z "`echo $a | grep '^min_hour'`" ] - then - MIN_HOUR=`echo $a | awk '{ print $2 }' ` - echo "$TIMESTAMP - [SETUP] - MIN_HOUR is $MIN_HOUR" >> $PANDORA_LOGFILE - fi - if [ ! -z "`echo $a | grep '^max_hour'`" ] - then - MAX_HOUR=`echo $a | awk '{ print $2 }' ` - echo "$TIMESTAMP - [SETUP] - MAX_HOUR is $MAX_HOUR" >> $PANDORA_LOGFILE - fi - if [ ! -z "`echo $a | grep '^delayed_startup'`" ] + if [ ! -z "`echo $a | grep '^delayed_startup'`" ] then DELAYED_STARTUP=`echo $a | awk '{ print $2 }' ` echo "$TIMESTAMP - [SETUP] - DELAYED_STARTUP is $DELAYED_STARTUP" >> $PANDORA_LOGFILE - fi - # CPU protection - if [ ! -z "`echo $a | grep '^pandora_nice'`" ] - then - PANDORA_NICE=`echo $a | awk '{ print $2 }' ` - echo "$TIMESTAMP - [SETUP] - PandoraFMS Nice is $PANDORA_NICE" >> $PANDORA_LOGFILE - fi -# Contribution of daggett + fi + # CPU protection + if [ ! -z "`echo $a | grep '^pandora_nice'`" ] + then + PANDORA_NICE=`echo $a | awk '{ print $2 }' ` + echo "$TIMESTAMP - [SETUP] - PandoraFMS Nice is $PANDORA_NICE" >> $PANDORA_LOGFILE + fi + + # Contribution of daggett if [ ! -z "`echo $a | grep '^server_port'`" ] then SERVER_PORT=`echo $a | awk '{ print $2 }' ` @@ -146,19 +135,6 @@ then sleep $(($DELAYED_STARTUP*60)) fi -while [ 1 ] -do - # Check for an appropiate time to execute (5min intervals) - if [ $MAX_HOUR != $MIN_HOUR ] - CURRENT_HOUR=`date +"%H"` - then - while [ $CURRENT_HOUR -lt $MIN_HOUR ] || [ $CURRENT_HOUR -gt $MAX_HOUR ] - do - echo "Waiting to valid time ($MIN_HOUR - $MAX_HOUR, current $CURRENT_HOUR)" >> $PANDORA_LOGFILE.err - sleep 300 - done - fi - # MAIN Program loop begin # OS Data OS_VERSION=`uname -v` @@ -175,6 +151,9 @@ CONTADOR=0 EXECUTE=1 MODULE_END=0 +# Renice me +renice $PANDORA_NICE $$ + while [ "1" = "1" ] do # Fecha y hora. Se genera un serial (numero de segundos desde 1970) para cada paquete generado. @@ -186,47 +165,49 @@ do CHECKSUM=$TEMP/$NOMBRE_HOST.$SERIAL.checksum PANDORA_FILES="$TEMP/$NOMBRE_HOST.$SERIAL.*" DATA2=$TEMP/$NOMBRE_HOST.$SERIAL.data_temp -# Make some checks -if [ "$TRANSFER_MODE" = "ftp" ] -then - if [ ! -f $HOME/.netrc ] - then - echo "(EE) Transfer mode is FTP but there is no usable .netrc file. Aborting." - exit - fi -fi -if [ "$DEBUG_MODE" = "1" ] -then - echo "(**) Warning: Running in DEBUG mode" -fi - # Makes data packet - echo "" > $DATA - if [ "$DEBUG_MODE" = "1" ] - then - echo "$TIMESTAMP - Reading module adquisition data from .conf file" >> $PANDORA_HOME/pandora.log - DEBUGOUTPUT=$PANDORA_HOME/pandora.log - else - DEBUGOUTPUT=/dev/null - fi - - for a in `cat $PANDORA_HOME/pandora_agent.conf | grep -v "^#" | grep "^module" ` - do - a=`echo $a | tr -s " " " "` - - if [ ! -z "`echo $a | grep '^module_exec'`" ] - then - if [ $EXECUTE -eq 0 ] - then - execution=`echo $a | cut -c 13-` - res=`eval $execution 2> /dev/null` - if [ -z "$flux_string" ] - then - res=`eval expr $res 2> /dev/null` - fi - echo "$res" >> $DATA2 - fi +# Make some checks + if [ "$TRANSFER_MODE" = "ftp" ] + then + if [ ! -f $HOME/.netrc ] + then + echo "(EE) Transfer mode is FTP but there is no usable .netrc file. Aborting." + exit + fi fi + + if [ "$DEBUG_MODE" = "1" ] + then + echo "(**) Warning: Running in DEBUG mode" + fi + + # Makes data packet + echo "" > $DATA + if [ "$DEBUG_MODE" = "1" ] + then + echo "$TIMESTAMP - Reading module adquisition data from .conf file" >> $PANDORA_HOME/pandora.log + DEBUGOUTPUT=$PANDORA_HOME/pandora.log + else + DEBUGOUTPUT=/dev/null + fi + + for a in `cat $PANDORA_HOME/pandora_agent.conf | grep -v "^#" | grep "^module" ` + do + a=`echo $a | tr -s " " " "` + + if [ ! -z "`echo $a | grep '^module_exec'`" ] + then + if [ $EXECUTE -eq 0 ] + then + execution=`echo $a | cut -c 13-` + res=`eval $execution 2> /dev/null` + if [ -z "$flux_string" ] + then + res=`eval expr $res 2> /dev/null` + fi + echo "$res" >> $DATA2 + fi + fi if [ ! -z "`echo $a | grep '^module_name'`" ] then @@ -300,59 +281,62 @@ fi done # Count number of agent runs CONTADOR=`expr $CONTADOR + 1` + # Keep a limit of 100 for overflow reasons if [ $CONTADOR -eq 100 ] then CONTADOR=0 fi - # Call for user-defined script for data adquisition - if [ -f "$PANDORA_HOME/pandora_user.conf" ] - then - /bin/sh $PANDORA_HOME/pandora_user.conf >> $DATA 2> /dev/null - fi + # Call for user-defined script for data adquisition + if [ -f "$PANDORA_HOME/pandora_user.conf" ] + then + /bin/sh $PANDORA_HOME/pandora_user.conf >> $DATA 2> /dev/null + fi - # Finish data packet - echo "" >> $DATA - echo "$TIMESTAMP - Finish writing XML $DATA" >> $DEBUGOUTPUT - # Calculate Checksum and prepare MD5 file - if [ "$CHECKSUM_MODE" = 1 ] - then - CHECKSUM_DATA=`cat $DATA | md5 ` - echo $CHECKSUM_DATA $DATA> $CHECKSUM - else - echo "NO MD5 CHECKSUM AVAILABLE" > $CHECKSUM - fi - # Send packets to server and delete it -# scp $PANDORA_FILES pandora@$SERVER_IP:$SERVER_PATH -# if [ "$DEBUG_MODE" = 1 ] -# then -# echo "$TIMESTAMP - DEBUG :Copying $PANDORA_FILES to $SERVER_IP:$SERVER_PATH" >> $PANDORA_HOME/pandora.log -# else - # Delete it -# rm -f $PANDORA_FILES> /dev/null -# fi - if [ "$TRANSFER_MODE" = "ssh" ] + # Finish data packet + echo "" >> $DATA + echo "$TIMESTAMP - Finish writing XML $DATA" >> $DEBUGOUTPUT + + # Calculate Checksum and prepare MD5 file + if [ "$CHECKSUM_MODE" = 1 ] + then + CHECKSUM_DATA=`cat $DATA | md5 ` + echo $CHECKSUM_DATA $DATA> $CHECKSUM + else + echo "NO MD5 CHECKSUM AVAILABLE" > $CHECKSUM + fi + + # Debug mode + if [ "$DEBUG_MODE" = "1" ] then - scp -P $SERVER_PORT $PANDORA_FILES pandora@$SERVER_IP:$SERVER_PATH > /dev/null 2> $PANDORA_LOGFILE.err + echo "$TIMESTAMP - Finish writing XML $DATA" >> $PANDORA_LOGFILE + echo "(**) Data file is at $DATA - Exiting now" + echo " " + exit 0 + fi + + # Send packets to server and delete it + if [ "$TRANSFER_MODE" = "ssh" ] + then + scp -P $SERVER_PORT $PANDORA_FILES pandora@$SERVER_IP:$SERVER_PATH > /dev/null 2> $PANDORA_LOGFILE.err fi if [ "$TRANSFER_MODE" = "ftp" ] then - ftp SERVER_IP > /dev/null 2> $PANDORA_LOGFILE.err + ftp SERVER_IP > /dev/null 2> $PANDORA_LOGFILE.err fi if [ "$TRANSFER_MODE" = "local" ] then - cp $PANDORA_FILES $SERVER_PATH > /dev/null 2> $PANDORA_LOGFILE.err + cp $PANDORA_FILES $SERVER_PATH > /dev/null 2> $PANDORA_LOGFILE.err fi - # Delete data - rm -f $PANDORA_FILES> /dev/null 2> $PANDORA_LOGFILE.err + # Delete data + rm -f $PANDORA_FILES> /dev/null 2> $PANDORA_LOGFILE.err + # Go to bed :-) + sleep $INTERVAL - # Go to bed :-) - sleep $INTERVAL -done done # forever! diff --git a/pandora_agents/solaris/pandora_agent.conf b/pandora_agents/solaris/pandora_agent.conf index 79a9ef21d2..b999a1021c 100755 --- a/pandora_agents/solaris/pandora_agent.conf +++ b/pandora_agents/solaris/pandora_agent.conf @@ -1,6 +1,6 @@ # Fichero de configuracion base de agentes de Pandora # Base config file for Pandora agents -# Version 1.2, Solaris version +# Version 1.3, Solaris version # General Parameters # ================== @@ -11,7 +11,7 @@ temporal /var/spool/pandora/data_out interval 300 #agent_name satellite_system checksum 0 -debug 1 +debug 0 # By default is 22 (for ssh) #server_port 22 @@ -20,20 +20,11 @@ transfer_mode ssh # delayed_startup defines number of MINUTES before start execution # for first time when startup Pandora Agent - #delayed_startup 90 #Pandora nice defines priority of execution. Less priority means more intensive execution -#A recommended value is 10. 0 priority means no Pandora CPU protection enabled -pandora_nice 10 - -# min_hour, defines mininum valid hour to allow Pandora agent execution - -min_hour 9 - -# max_hour, defines maximum valid hour to allow Pandora agent execution - -max_hour 18 +#A recommended value for Solaris stressed systems is 30. 20 priority means no Pandora CPU protection enabled +# pandora_nice 20 # Module Definition # =================