%CODE{"sh" num="1"}% # SCRIPT: Cluster Monitoring Script # Date..: Mon 20 Oct 2008 02:48:13 PM BRST # Author: Jadir Marra da Silva<jadir.silva13@gmail.com> # ##################################################### # Jadir Silva: # Mon 02 Nov 2008 # + acrescentado o teste para verificar o espaco no /scratch # do nodes conforme sugerido por Sergio Lietti.

# Jadir Silva: # Mon 03 Nov 2008 09:47:20 AM BRST # + acrescentado uma definicão condicional para MAILTO, # MAILSUBJECT e CARBON_COPY para evitar o envio de emails # quando estiver depurando o script

# Jadir Silva: # Mon 10 Nov 2008 11:21:26 AM BRST # + acrescentado alerta via email para o site verify,

# Jadir Silva: # Tue 11 Nov 2008 09:09:13 AM BRST # + acrescentado comando para remover o arquivo temporario com # o conteudo do email de alerta.

# Jadir Silva: # Tue 11 Nov 2008 12:43:04 PM BRST # + alterado o IDLE_THRESHOLD de 699 para 999 # seguindo orientacao do Lietti.

# Jadir Silva: # Thu 27 Nov 2008 10:22:34 AM BRST # + correcao de pequeno problema que impedia # o envio de email com numero de nodes com o condor down.

TIER="T2_BR_SPRACE" SEND_MAIL="N" GRID_USER="mdias" MAIL_BODY=`mktemp /tmp/site_verify.XXXXXXX` MAILFROM="root@osg-ce.sprace.org.br" MAILTO="sprace_ops@googlegroups.com" CARBON_COPY="jadir.silva13@gmail.com" MAILSUBJECT="SPRACE - Monitoramento Automatico - `date`"

STATUS_PAGE="/var/www/html/spracemon.html" MAIN_SERVERS="acs.grid osgce.grid osgse.grid storage01.grid storage02.grid" LOAD_THRESHOLD=9 SERVERS_LOAD_THRESHOLD=14 POOL_THRESHOLD=90 IDLE_THRESHOLD=999 #GANGLIA_LINK='http://prod-frontend.hepgrid.uerj.br/ganglia/' GANGLIA_LINK='http://osg-ce.sprace.org.br/ganglia' DCACHE_URL="http://osg-se.sprace.org.br:2288" #DCACHE_URL="http://cdfdca.fnal.gov:2288/cellInfo"

# Captura uma lista com todos os nodes do cluster NODE_LIST=`links -source $GANGLIA_LINK | grep 'OPTION.*\.grid' | sed 's/<[^>]*>/ /g'` NODE_LIST=`echo $NODE_LIST | sed 's/\.grid//g'` NODE_LIST=`echo $NODE_LIST | sed 's/osgce//g;s/storage01//g;s/storage02//g;s/osgse//g;s/acs//g'`

NODE_LIST=`cat /root/bin/cluster.list`

PHEDEX_PROD_URL="http://cmsweb.cern.ch/phedex/prod/Components::Status" PHEDEX_DEBG_URL="http://cmsweb.cern.ch/phedex/debug/Components::Status"

MSG="" FOOTER="
This is an automatic email, please do not reply
Message send in `date`"

function Header(){ echo "

$1</h2" >> $MAIL_BODY echo "
" >> $MAIL_BODY }

function OpenTable(){ echo "

" >> $MAIL_BODY }

function CloseTable(){ echo "

" >> $MAIL_BODY }

function OpenTbLine(){ echo "" >> $MAIL_BODY }

function CloseTbLine(){ echo "" >> $MAIL_BODY }

function OpenCell(){ echo '' >> $MAIL_BODY }

function CloseCell(){ echo "" >> $MAIL_BODY }

function Link(){ echo "For details "'click here' >> $MAIL_BODY }

function WriteLn(){ echo "$1
" >> $MAIL_BODY }

function Write(){ echo "$1 " >> $MAIL_BODY }

function WriteStatusPage(){ cp $MAIL_BODY $STATUS_PAGE }

function InitMail(){ echo "" >> $MAIL_BODY echo "" >> $MAIL_BODY echo "" >> $MAIL_BODY echo "" >> $MAIL_BODY echo "" >> $MAIL_BODY echo "" >> $MAIL_BODY echo "" >> $MAIL_BODY echo "" >> $MAIL_BODY echo "" >> $MAIL_BODY echo "" >> $MAIL_BODY echo "" >> $MAIL_BODY echo "" >> $MAIL_BODY echo "SPRACE Monitoring script" >> $MAIL_BODY echo "" >> $MAIL_BODY echo "" >> $MAIL_BODY echo "

SPRACE Monitoring Report

" >> $MAIL_BODY echo "

Test start at `date`

" >> $MAIL_BODY echo " http://osg-ce.sprace.org.br/banner-unico-aa.png);background-repeat: no-repeat\">" >> $MAIL_BODY }

function CloseMail(){ echo "

Test done at `date`

" >> $MAIL_BODY echo "
" >> $MAIL_BODY echo "Report generated by monitor.sh script, developed by Jadir Silva with support of Allan Szu
" >> $MAIL_BODY echo "and some suggestions from Sergio Lietti following steps defined by Marco Dias in " >> $MAIL_BODY echo "[1]." >> $MAIL_BODY echo "

Obs.: This script still under development, if you have any opinion,
" >> $MAIL_BODY echo "contact me at jadir.silva13@gmail.com
" >> $MAIL_BODY echo " " >> $MAIL_BODY echo "" >> $MAIL_BODY }

function SendMail(){ cat - $1 <<HERE | /usr/sbin/sendmail -oi -t From: $2 To: $3 Cc: $4 Subject: $5 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit MIME-Version: 1.0

HERE }

SendMsgToTeam(){ if [ "`basename $0`" == "monitor_debug.sh" ];then MAILSUBJECT="SPRACE - Debug" CARBON_COPY="jadirmarra@yahoo.com.br" MAILTO="jadir.silva13@gmail.com" fi

ReportMail=`mktemp /tmp/ReportMail.XXXXXX` echo "$MSG" > $ReportMail SendMail "$ReportMail" "$MAILFROM" "$MAILTO" "$CARBON_COPY" "$MAILSUBJECT" #rm -fr $ReportMail }

function ReportToTeam(){ case "$1" in idle) MSG="$MSG


Lot of Jobs in idle state


There are $2 in idle state on the farm.
" ;; sam-error) MSG="$MSG

Error on SAM test


The SAM test presents some errors $2.
" ;; dcache) MSG="$MSG

Error in some services of dcache


DCache have $2 stopped services.
" ;; dpool) MSG="$MSG

Low space on some pools in dcache


DCache has some pools with $2 of space used.
" ;; server-load) MSG="$MSG

Load of main servers


$2 beyond $SERVERS_LOAD_THRESHOLD.
" ;; node-load) MSG="$MSG

Load dos nodes


$2 beyond $LOAD_THRESHOLD.
" ;; node_down) MSG="$MSG

Node Down


$2 down.
$FOOTER" ;; condor_down) MSG="$MSG

Condor Down


$2 with condor stopped.
" ;; low_disk) MSG="$MSG

Low space on scratch in following nodes


$2
" ;; job_robot) MSG="$MSG

JobRobot with low efficiency


$2%
" ;; old_jobs) MSG="$MSG

Jobs more than 2 days on the farm


$2
" ;; site_verify) MSG="$MSG

Site verify failed.


$2
" ;; phedex_down) MSG="$MSG

Phedex Agents status.


$2
" ;; esac }

function JobRobotTest(){ JOB_ROBOT_URL1="http://belforte.home.cern.ch/belforte/JobRobot/summary_"`date '+%y%m%d' -d "$1 day ago"`".html" JOBROBOT1=`links -source $JOB_ROBOT_URL1` POSITION=`echo "$JOBROBOT1" | grep -n ' T2_BR_SPRACE' | awk -F: '{print $1}'`

if [ "$POSITION" = "" ];then SED_DATA="$POSITION,$((POSITION+5))p" JOBROBOT1=`echo "$JOBROBOT1" | sed -n $SED_DATA | sed 's/<[^>]*>/ /g'` EFICIENCIA=`echo $JOBROBOT1 | awk '{print $6}'`

if [ "$EFICIENCIA" == "" ];then WriteLn "Efficiency : -- -- --" else if [ $EFICIENCIA -lt 60 ];then if [ "$1" == "1" ];then ReportToTeam "job_robot" "$EFICIENCIA" fi EFI="Efficiency : $EFICIENCIA% (below expected) (Test done at "`date '+%d/%m/%Y' -d "$1 day ago"`")." WriteLn "$EFI" else EFI="Efficiency : $EFICIENCIA% Ok (Test done at "`date '+%d/%m/%Y' -d "$1 day ago"`")." WriteLn "$EFI" fi fi else WriteLn "Efficiency : -- -- --" fi }

# inicializa o ambiente do OSG source /OSG/setup.sh

InitMail ##################################################### # espaco reservado para testes nao digite nada aqui

######################################################

# PASSO 1. verifica quantos nodes estao down Header "Hosts down"

HDOWN=`links -source $GANGLIA_LINK | grep 'class=down' | sed 's/<[^>]*>/ /g' | awk '{ print $1,"|" }'` HDOWN=`echo $HDOWN | sed 's/\.grid//g'`

UP_LIST=$NODE_LIST OLD_IFS=$IFS

if [ "$HDOWN" == "" ];then WriteLn "No hosts down." else IFS='|' for host in $HDOWN;do IFS=$OLD_IFS NODE_NAME=`echo $host | awk '{print $1}'` IFS='|' Write "$NODE_NAME  " UP_LIST=`echo $UP_LIST | sed "s/$NODE_NAME/ /g"` Link "http://osg-ce.sprace.org.br/ganglia/?p=2&c=OSG-CE%20Cluster&h=$NODE_NAME.grid" Write "
" done ReportToTeam "node_down" "$HDOWN" fi

IFS=$OLD_IFS

# PASSO 2. verifica os host's que estao load > 10 Header "Hosts with load equal/above $((LOAD_THRESHOLD+1))" NADA=0 LOADS="" for a in $UP_LIST;do node_load=`links -source "http://osg-ce.sprace.org.br/ganglia/?p=2&c=OSG-CE%20Cluster&h=$a" | sed -n '85q;82,84p' | sed 's/<[^>]*>/ /g'` LOAD=`echo $node_load | awk '{print $1}'` LOAD=`echo $LOAD | sed 's/\.[0-9][0-9]//g'` if [ $LOAD -gt $LOAD_THRESHOLD ];then WriteLn "$a load : $LOAD" LOADS="$LOADS
$a(load=$LOAD)" NADA=1 fi done

if [ $NADA == 0 ];then WriteLn "No host with load equal/above $((LOAD_THRESHOLD+1))." NADA=0 else ReportToTeam "node-load" "$MSG" fi

NADA=0 Header "Load of main servers
$MAIN_SERVERS"

# PASSO 3. Load acima de 15 nos principais servidores. LOAD_NODE="" for a in $MAIN_SERVERS ;do # node_load=`links -source "http://osg-ce.sprace.org.br/ganglia/?p=2&c=OSG-CE%20Cluster&h=$a" | sed -n '85q;82,84p' | sed 's/<[^>]*>/ /g' | grep '[1-9][5-9]\.'` node_load=`links -source "http://osg-ce.sprace.org.br/ganglia/?p=2&c=OSG-CE%20Cluster&h=$a" | sed -n '85q;82,84p' | sed 's/<[^>]*>/ /g'` LOAD=`echo $node_load | awk '{print $1}'` LOAD=`echo $LOAD | sed 's/\.[0-9][0-9]//g'` if [ $LOAD -gt $SERVERS_LOAD_THRESHOLD ];then LOAD_NODE="$a(load=$LOAD)" WriteLn "$a load : $LOAD" NADA=1 fi done

if [ $NADA == 0 ];then WriteLn "No host with load equal/above $((SERVERS_LOAD_THRESHOLD+1))." NADA=0 else ReportToTeam "server-load" "$LOAD_NODE" fi

# PASSO 4. # Site verify # executa o script site_verify.pl da OSG. SITE_VERIFY=`su - $GRID_USER -c "source /opt/osg-1.0.0/setup.sh;/opt/osg-1.0.0/verify/site_verify.pl" | grep -i " FAIL"`

Header "Siteverify.pl status"

if [ "$SITE_VERIFY" == "" ];then WriteLn "Site verify test: SUCCESS" else WriteLn "Errors founded:" WriteLn "$SITE_VERIFY" ReportToTeam "site_verify" "$SITE_VERIFY" fi

# verifica se o condor esta rodando em todos os nos Header "Condor status" CRUNNING=0 CSTOPPED=0 CONDOR_MSG="" for node in $UP_LIST;do IS_RUNNING=`ssh $node ps -fu condor | grep -v UID` if [ "$IS_RUNNING" == "" ];then WriteLn "$node with condor stopped." CSTOPPED=$((CSTOPPED+1)) CONDOR_MSG="$CONDOR_MSG
$node" else CRUNNING=$((CRUNNING+1)) fi

done

if [ "$CSTOPPED" == "0" ];then WriteLn "Condor running on all active nodes" else ReportToTeam "condor_down" "$CONDOR_MSG" WriteLn "Condor running on $CRUNNING nodes and stopped on $CSTOPPED nodes." fi

Header "Job status" JOBS_STATS=`condor_q | grep running` IDLE_JOBS=`echo $JOBS_STATS | awk '{print $3}'` TOTAL_JOBS=`echo $JOBS_STATS | awk '{print $1}'` RUN_JOBS=`echo $JOBS_STATS | awk '{print $5}'` HELD_JOBS=`echo $JOBS_STATS | awk '{print $7}'`

OpenTable OpenTbLine OpenCell WriteLn "Running: $RUN_JOBS" if [ $IDLE_JOBS -gt $IDLE_THRESHOLD ];then WriteLn "Idle.......: $IDLE_JOBS Warning!!!" ReportToTeam "idle" "$IDLE_JOBS" else WriteLn "Idle.......: $IDLE_JOBS" fi WriteLn "Held.......: $HELD_JOBS" WriteLn "Total......: $TOTAL_JOBS" CloseCell OpenCell WriteLn "     &nbsp" CloseCell OpenCell WriteLn "If has any job held or more than $((IDLE_THRESHOLD+1)) jobs in idle
Please report to sprace_ops@yahoo.com.br" CloseCell CloseTbLine CloseTable

Header "Jobs with more than 2 days on the farm" JOBS_RUNNING=`condor_q -run | grep [2-9]+ ` if [ "$JOBS_RUNNING" == "" ];then WriteLn "No jobs more than 2 days on the farm" else MORE2DAYS=`echo $JOBS_RUNNING | sed 's/\.grid/\.grid
/g'` WriteLn "$MORE2DAYS" ReportToTeam "old_jobs" "$MORE2DAYS" fi

Header "Farm occupation" FarmOcupation=`condor_q -run | grep -v "OWNER" | grep -v "Submitter" | awk '{print $2}' | sort | uniq -c | sed 1d` WriteLn "

$FarmOcupation
"

Header "SAM test"

SAM=`links -source "http://dashb-cms-sam.cern.ch/dashboard/request.py/latestresultssmry?siteSelect3=T2T1T0&serviceTypeSelect3=vo&sites=T2_BR_SPRACE&services=CE&services=SRMv2&tests=1301&tests=133&tests=111&tests=6&tests=1261&tests=76&tests=64&tests=20&tests=281&tests=882&exitStatus=all" | sed -e '/latestresultssmrytable/!d' | awk '{ print substr($0,index($0,"latestresultssmrytable")) }' | sed 's/target=\"\_blank\">//g'`

SAM_LINK='"http://dashb-cms-sam.cern.ch/dashboard/request.py/'$SAM SAM_LINK=`echo $SAM_LINK | sed 's/\"//g'` SAM_TABLE=`links -source $SAM_LINK | sed 's/\/dashboard/http\:\/\/dashb-cms-sam\.cern\.ch\/dashboard/g'` SAM_TABLE=`echo $SAM_TABLE | sed 's/SAM-Latest Results<\/title><\/head><body>//g'` SAM_TABLE=`echo $SAM_TABLE | awk '{ print substr($0,index($0,"<link rel")) }'` SAM_TABLE=`echo $SAM_TABLE | sed 's/<\/body><\/html>'//g` SAM_TABLE=`echo $SAM_TABLE | awk '{ print substr($0,index($0,"<div"))}'` #SAM_TABLE=`echo $SAM_TABLE | sed 's/Service Type/Tipo de Servico/g;s/Service Name/Nome do Servico/g;s/Sitename/Sitio/g'` <p /> SAM_RED1_ERROR=`echo $SAM_TABLE | awk '{ print substr($0,index($0,"background-color:#FF0000"),24) }' ` SAM_RED2_ERROR=`echo $SAM_TABLE | awk '{ print substr($0,index($0,"background-color:#FF6666"),24) }' ` SAM_RED3_ERROR=`echo $SAM_TABLE | awk '{ print substr($0,index($0,"background-color:#FF9999"),24) }' ` <p /> SAM_CRIT1_ERROR=`echo $SAM_TABLE | awk '{ print substr($0,index($0,"background-color:#CC00CC"),24) }' ` SAM_CRIT2_ERROR=`echo $SAM_TABLE | awk '{ print substr($0,index($0,"background-color:#FF33FF"),24) }' ` SAM_CRIT3_ERROR=`echo $SAM_TABLE | awk '{ print substr($0,index($0,"background-color:#FF99FF"),24) }' ` <p /> if [ "$SAM_RED1_ERROR" == "background-color:#FF0000" ];then <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/ReportToTeam?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="ReportToTeam (this topic does not yet exist; you can create it)">ReportToTeam</a></span> "sam-error" "Dark red code" fi <p /> if [ "$SAM_RED2_ERROR" == "background-color:#FF6666" ];then <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/ReportToTeam?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="ReportToTeam (this topic does not yet exist; you can create it)">ReportToTeam</a></span> "sam-error" "Light red code" fi <p /> if [ "$SAM_RED3_ERROR" == "background-color:#FF9999" ];then <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/ReportToTeam?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="ReportToTeam (this topic does not yet exist; you can create it)">ReportToTeam</a></span> "sam-error" "Lightest red code" fi <p /> if [ "$SAM_CRIT1_ERROR" == "background-color:#CC00CC" ];then <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/ReportToTeam?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="ReportToTeam (this topic does not yet exist; you can create it)">ReportToTeam</a></span> "sam-error" "Dark critical code" fi <p /> if [ "$SAM_CRIT2_ERROR" == "background-color:#FF33FF" ];then <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/ReportToTeam?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="ReportToTeam (this topic does not yet exist; you can create it)">ReportToTeam</a></span> "sam-error" "Light critical code" fi <p /> if [ "$SAM_CRIT3_ERROR" == "background-color:#FF99FF" ];then <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/ReportToTeam?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="ReportToTeam (this topic does not yet exist; you can create it)">ReportToTeam</a></span> "sam-error" "Lightest critical code" fi <p /> echo "$SAM_TABLE" >> $MAIL_BODY <p /> # Verifica os servicos do d-cache Header "DCache status" <p /> CELL_INFO=`links -source $DCACHE_URL/cellinfo` USAG_INFO=`links -source $DCACHE_URL/usageInfo` CELL_STAT=`echo "$CELL_INFO" | sed 's/<[^>]*>/ /g' | grep -i offline | wc -l` USAG_STAT=`echo "$USAG_INFO" | sed 's/<[^>]*>/ /g'` <p /> if [ $CELL_STAT -gt 0 ];then <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/WriteLn?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="WriteLn (this topic does not yet exist; you can create it)">WriteLn</a></span> "$CELL_STAT dcache services are stopped" <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/ReportToTeam?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="ReportToTeam (this topic does not yet exist; you can create it)">ReportToTeam</a></span> "dcache" "$CELL_STAT" else <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/WriteLn?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="WriteLn (this topic does not yet exist; you can create it)">WriteLn</a></span> "All dcache services(<i>daemons</i>) ok.<br />" fi <p /> LINE="" TOTAL=0 FREE=0 REPORTAR="" echo "$USAG_INFO" | egrep '(cell|total|free|precious)' | grep '<td' | grep -v 'layout' | sed 's/<td class=\"//g;s/\">/ /g;s/<\/td>//g' | while read celula valor ;do <p /> if [ "$celula" == "cell" ];then LINE="$LINE $valor" fi <p /> if [ "$celula" == "total" ];then TOTAL="$valor" fi <p /> if [ "$celula" == "free" ];then FREE="$valor" fi <p /> if [ "$celula" == "precious" ];then PERCENT=`cat - << HERE | bc scale=0 100-((100*$FREE)/$TOTAL) HERE` <p /> if [ $PERCENT -gt $POOL_THRESHOLD ];then REPORTAR="$REPORTAR <br />$LINE with $PERCENT occupation" PERCENT="<font color=#ff0000>$PERCENT%</font>" else PERCENT="$PERCENT%" fi <p /> <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/WriteLn?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="WriteLn (this topic does not yet exist; you can create it)">WriteLn</a></span> "$LINE with $PERCENT ocuppation" LINE="" fi done <p /> if [ "$REPORTAR" = "" ];then <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/ReportToTeam?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="ReportToTeam (this topic does not yet exist; you can create it)">ReportToTeam</a></span> "dpool" "$REPORTAR" fi <p /> ####################### # Lietti sugeriu acrescentar no relatorio o espaco ocupado pelo/scratch dos nodes # entao desenvolvi o codigo abaixo para fazer isto. x=0 Header "Ocuppation of /scratch on nodes" <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/WriteLn?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="WriteLn (this topic does not yet exist; you can create it)">WriteLn</a></span> "<h3>Only nodes less than 8Gb.</h3>" IFS=$OLD_IFS LOW_DISK_NODES="" nodes_to_save="" for node in $UP_LIST;do if [ "$node" = "`/bin/hostname -s`" ]; then eval "df -h /scratch" else saida=`ssh $node "df /scratch"` size=`echo $saida | awk '{print $11}'` perc=`echo $saida | awk '{print $12}'` if [ $size -lt 8388608 ];then x=$(($x+1)) if [ $size -lt 1048576 ];then node_disk_space="$node"'('"$(($size/1024))Mb"') ' <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/WriteLn?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="WriteLn (this topic does not yet exist; you can create it)">WriteLn</a></span> "$node_disk_space" LOW_DISK_NODES="$LOW_DISK_NODES $node_disk_space<br />" nodes_to_save="$nodes_to_save $node" else node_disk_space="$node"'('"$(($size/1048576))Gb"') ' <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/WriteLn?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="WriteLn (this topic does not yet exist; you can create it)">WriteLn</a></span> "$node_disk_space" LOW_DISK_NODES="$LOW_DISK_NODES $node_disk_space<br />" nodes_to_save="$nodes_to_save $node" fi fi fi done <p /> if [ "$LOW_DISK_NODES" = "" ];then <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/ReportToTeam?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="ReportToTeam (this topic does not yet exist; you can create it)">ReportToTeam</a></span> "low_disk" "$LOW_DISK_NODES" echo "$nodes_to_save" > /tmp/nodes_full.txt else <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/WriteLn?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="WriteLn (this topic does not yet exist; you can create it)">WriteLn</a></span> "No node with low space on /scratch" fi <p /> <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/WriteLn?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="WriteLn (this topic does not yet exist; you can create it)">WriteLn</a></span> "" <p /> Header "JobRobot Status" <p /> <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/JobRobotTest?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="JobRobotTest (this topic does not yet exist; you can create it)">JobRobotTest</a></span> 1 <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/JobRobotTest?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="JobRobotTest (this topic does not yet exist; you can create it)">JobRobotTest</a></span> 2 <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/JobRobotTest?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="JobRobotTest (this topic does not yet exist; you can create it)">JobRobotTest</a></span> 3 <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/JobRobotTest?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="JobRobotTest (this topic does not yet exist; you can create it)">JobRobotTest</a></span> 4 <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/JobRobotTest?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="JobRobotTest (this topic does not yet exist; you can create it)">JobRobotTest</a></span> 5 <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/JobRobotTest?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="JobRobotTest (this topic does not yet exist; you can create it)">JobRobotTest</a></span> 6 <p /> if [ "$DEBUG" == "monitor_debug.sh" ];then # codigo de teste ou instavel deve ficar aqui #################### Header "CEMon Status" ldap=`ldapsearch -x -LLL -p 2170 -h is.grid.iu.edu -b mds-vo-name=SPRACE,mds-vo-name=local,o=grid` cods=`ssh node34 "source /OSG/setup.sh;condor_status -pool osg-ress-1.fnal.gov -l -constraint 'GlueCEInfoHostName == \"osg-ce.sprace.org.br\"'"` <p /> LDAP_STATUS=`echo $ldap | grep ` <p /> # fim da area de teste ########################################### fi <p /> # status dos agentes do phedex Header "Phedex Agents Status" <p /> PRODUCTION_STATUS=`links -source $PHEDEX_PROD_URL` DEBUG_STATUS=`links -source $PHEDEX_DEBG_URL` <p /> PROD_POSITION=`echo "$PRODUCTION_STATUS" | grep -n "$TIER" | awk -F: '{print $1}'` DEBG_POSITION=`echo "$DEBUG_STATUS" | grep -n "$TIER" | awk -F: '{print $1}'` <p /> TBL_CODE="" TBL_CODE2="" <p /> if [ "$PROD_POSITION" = "" ];then SED_DATA="$((PROD_POSITION+1)),$((PROD_POSITION+2))p" PROD_CODE=`echo "$PRODUCTION_STATUS" | sed -n $SED_DATA | sed 's/<[^>]*>/ /g'` TBL_CODE=`echo "$PRODUCTION_STATUS" | sed -n $SED_DATA` <p /> IS_AGENT_DOWN=`echo "$PROD_CODE" | grep DOWN` <p /> if [ "$IS_AGENT_DOWN" = "" ];then <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/ReportToTeam?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="ReportToTeam (this topic does not yet exist; you can create it)">ReportToTeam</a></span> "phedex_down" "Phedex(production) agent down" <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/WriteLn?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="WriteLn (this topic does not yet exist; you can create it)">WriteLn</a></span> "Phedex(production) agents down." else <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/WriteLn?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="WriteLn (this topic does not yet exist; you can create it)">WriteLn</a></span> "Phedex(production) agents are OK." fi fi <p /> <p /> if [ "$DEBG_POSITION" = "" ];then SED_DATA="$((DEBG_POSITION+1)),$((DEBG_POSITION+2))p" DEBG_CODE=`echo "$DEBUG_STATUS" | sed -n $SED_DATA | sed 's/<[^>]*>/ /g'` TBL_CODE2=`echo "$DEBUG_STATUS" | sed -n $SED_DATA` <p /> IS_AGENT_DOWN=`echo "$DEBG_CODE" | grep DOWN` <p /> if [ "$IS_AGENT_DOWN" = "" ];then <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/ReportToTeam?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="ReportToTeam (this topic does not yet exist; you can create it)">ReportToTeam</a></span> "phedex_down" "Phedex(debug) agent down" <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/WriteLn?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="WriteLn (this topic does not yet exist; you can create it)">WriteLn</a></span> "Phedex(debug) agents down." else <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/WriteLn?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="WriteLn (this topic does not yet exist; you can create it)">WriteLn</a></span> "Phedex(debug) agents are OK." fi fi <p /> Write "<table><tr><td>Production Agents</td>$TBL_CODE</tr><tr><td>Debug Agents</td>$TBL_CODE2</tr></table>" <p /> <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/CloseMail?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="CloseMail (this topic does not yet exist; you can create it)">CloseMail</a></span> <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/WriteStatusPage?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="WriteStatusPage (this topic does not yet exist; you can create it)">WriteStatusPage</a></span> <p /> <p /> # Se houver algum alerta enviar para a lista de administradores # do cluster if [ "$MSG" = "" ];then MSG="$MSG $FOOTER" <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/SendMsgToTeam?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="SendMsgToTeam (this topic does not yet exist; you can create it)">SendMsgToTeam</a></span> fi <p /> if [ "$SEND_MAIL" = "Y" ];then <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/SendMail?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="SendMail (this topic does not yet exist; you can create it)">SendMail</a></span> $MAIL_BODY $MAILFROM $MAILTO $CARBON_COPY "$MAILSUBJECT" fi <p /> rm -frv $MAIL_BODY <p /> %ENDCODE% <h2><a name="Teste"></a> Teste </h2> <p /> <p /> -- <a class="twikiLink" href="/twiki/bin/view/Main/JadirSilva">JadirSilva</a> - 26 Sep 2008 Outra pagina para teste </div><!-- /patternTopic--> <div class="twikiContentFooter"></div></div><!-- /patternContent--> <div class="clear"></div> <a name="topic-actions"></a><div class="patternTopicActions"><div class="patternTopicAction"><span class="patternActionButtons"><span><a href='https://www.sprace.org.br/twiki/bin/edit/Main/TestLink?t=1713571025;nowysiwyg=0' rel='nofollow' title='Edit this topic text' accesskey='e'><img src='/twiki/pub/TWiki/TWikiDocGraphics/uweb-o14.gif' width='14' height='14' border='0' alt='' /> <span class='twikiAccessKey'>E</span>dit</a></span><span class='twikiSeparator'> | </span><span><a href='/twiki/bin/attach/Main/TestLink' rel='nofollow' title='Attach an image or document to this topic' accesskey='a'><span class='twikiAccessKey'>A</span>ttach</a></span><span class='twikiSeparator'> | </span><span><a href='/twiki/bin/view/Main/TestLink?cover=print%3brev%3d6' rel='nofollow' title='Printable version of this topic' accesskey='p'><span class='twikiAccessKey'>P</span>rint version</a></span><span class='twikiSeparator'> | </span><span><span><a href='/twiki/bin/rdiff/Main/TestLink?type=history' rel='nofollow' title='View total topic history' accesskey='h'><span class='twikiAccessKey'>H</span>istory</a></span>: r6 <a href="/twiki/bin/rdiff/Main/TestLink?rev1=6;rev2=5" rel="nofollow"><</a> <a href="/twiki/bin/view/Main/TestLink?rev=5" rel="nofollow">r5</a> <a href="/twiki/bin/rdiff/Main/TestLink?rev1=5;rev2=4" rel="nofollow"><</a> <a href="/twiki/bin/view/Main/TestLink?rev=4" rel="nofollow">r4</a> <a href="/twiki/bin/rdiff/Main/TestLink?rev1=4;rev2=3" rel="nofollow"><</a> <a href="/twiki/bin/view/Main/TestLink?rev=3" rel="nofollow">r3</a> <a href="/twiki/bin/rdiff/Main/TestLink?rev1=3;rev2=2" rel="nofollow"><</a> <a href="/twiki/bin/view/Main/TestLink?rev=2" rel="nofollow">r2</a></span><span class='twikiSeparator'> | </span><span><a href='/twiki/bin/oops/Main/TestLink?template=backlinksweb' rel='nofollow' title='Search the Main Web for topics that link to here' accesskey='b'><span class='twikiAccessKey'>B</span>acklinks</a></span><span class='twikiSeparator'> | </span><span><a href='/twiki/bin/view/Main/TestLink?raw=on' rel='nofollow' title='View raw text without formatting' accesskey='r'><span class='twikiAccessKey'>R</span>aw View</a></span><span class='twikiSeparator'> | </span><span><a href='https://www.sprace.org.br/twiki/bin/edit/Main/TestLink?t=1713571025;nowysiwyg=1' rel='nofollow' title='Raw Edit this topic text' accesskey='w'>Ra<span class='twikiAccessKey'>w</span> edit</a></span><span class='twikiSeparator'> | </span><span><a href='/twiki/bin/oops/Main/TestLink?template=oopsmore&param1=6&param2=6' rel='nofollow' title='Delete or rename this topic; set parent topic; view and compare revisions' accesskey='m'><span class='twikiAccessKey'>M</span>ore topic actions</a></span></span></div><!--/patternTopicAction--></div><!--/patternTopicActions--> <div class="patternInfo twikiGrayText"><div class="patternRevInfo">Topic revision: r6 - 2009-01-22 <a href="https://www.sprace.org.br/twiki/bin/edit/Main/TestLink?t=1713571025;nowysiwyg=1" target="_top">-</a> <a class="twikiLink" href="/twiki/bin/view/Main/JadirSilva">JadirSilva</a></div><!-- /patternRevInfo--></div><!-- /patternInfo--> </div><!-- /patternMainContents--> </div><!-- /patternMain--> </div><!-- /patternFloatWrap--> <div class="clear"> </div> </div><!-- /patternOuter--></div><!-- /patternWrapper--><div id="twTopBar"><!--<pre>--> <script type="text/javascript"> var twtimeout = 600; var twclosetimer = null; var twmenuitem = null; function twTopMenuOpen() { twTopMenuCancelTimer(); twTopMenuClose(); twmenuitem = $(this).find('ul').css('visibility', 'visible'); } function twTopMenuClose() { if(twmenuitem) { twmenuitem.css('visibility', 'hidden'); } } function twTopMenuTimer() { if(!twclosetimer) { twclosetimer = window.setTimeout(twTopMenuClose, twtimeout); } } function twTopMenuCancelTimer() { if(twclosetimer) { window.clearTimeout(twclosetimer); twclosetimer = null; } } $(document).ready(function() { $('.twTopMenuTab > ul li').bind('mouseover', twTopMenuOpen); $('.twTopMenuTab > ul').bind('mouseout', twTopMenuTimer); }); document.onclick = twTopMenuClose; </script> <!--</pre>--><div style="position: absolute; margin-left: 212px; margin-top: 30px; z-index: 1"><a href="/twiki/" style="display: block; width: 100px; height: 48px;"><span></span></a></div> <div style="position: fixed; min-width: 35px; height: 22px; background-image: url(/twiki/pub/TWiki/TopMenuSkin/menu-start.png); background-repeat: no-repeat;" id="topmenu-start"> <div style="position: fixed; width: 100%; height: 22px; background-image: url(/twiki/pub/TWiki/TopMenuSkin/menu-gray-bg.png); background-repeat: repeat-x; display: block;" id="topmenu-bar"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr style="background-image: url(/twiki/pub/TWiki/TopMenuSkin/menu-gray-bg.png); background-repeat: repeat-x;"> <td width="35"><img src="/twiki/pub/TWiki/TopMenuSkin/menu-start.png" width="35" height="22" alt="" /></td> <td width="80%"> <div class="twTopMenuTab"> <ul> <li> <a href="/twiki/bin/view/Main/WebHome" title="TWiki home --- Tip: This menu-bar is also a 'You are here' breadcrumb">Home <img alt="menu-down.gif" src="https://www.sprace.org.br/twiki/pub/TWiki/TWikiDocGraphics/menu-down.gif" /></a> <ul> <li> <a href="/twiki/bin/view/TWiki/SiteMap" title="Site map listing all webs"><img src="/twiki/pub/TWiki/TWikiDocGraphics/sitetree.gif" width="16" height="16" alt="Site tree" title="Site tree" border="0" /> Site map</a> </li> <li> <span style="white-space:nowrap"><a href="/twiki/bin/view/Main/WebHome"><img src="https://www.sprace.org.br/twiki/pub/TWiki/TWikiDocGraphics/web-bg.gif" border="0" alt="" width="16" height="16" style="background-color:#FFEFA6" /> Main web</a></span> </li> <li> <span style="white-space:nowrap"><a href="/twiki/bin/view/Sandbox/WebHome"><img src="https://www.sprace.org.br/twiki/pub/TWiki/TWikiDocGraphics/web-bg.gif" border="0" alt="" width="16" height="16" style="background-color:#B9DAFF" /> Sandbox web</a></span> </li> <li> <span style="white-space:nowrap"><a href="/twiki/bin/view/TWiki/WebHome"><img src="https://www.sprace.org.br/twiki/pub/TWiki/TWikiDocGraphics/web-bg.gif" border="0" alt="" width="16" height="16" style="background-color:#FFD8AA" /> TWiki web</a></span> </li></ul> </li> <li> <img src='https://www.sprace.org.br/twiki/pub/TWiki/TopMenuSkin/menu-right.png' alt='' width='8' height='22' /> </li> <li> <a class="twikiCurrentWebHomeLink twikiLink" href="/twiki/bin/view/Main/WebHome"><img src="https://www.sprace.org.br/twiki/pub/TWiki/TWikiDocGraphics/web-bg.gif" border="0" alt="" width="16" height="16" style="background-color:#FFEFA6" /> Main Web <img src="/twiki/pub/TWiki/TWikiDocGraphics/menu-down.gif" width="14" height="16" alt="Menu dropdown" title="Menu dropdown" border="0" /></a> <ul> <li> <a class="twikiLink" href="/twiki/bin/view/Main/UserList"> <img src="/twiki/pub/TWiki/TWikiDocGraphics/person.gif" width="16" height="16" alt="Person" title="Person" border="0" /> Users</a> </li> <li> <a class="twikiLink" href="/twiki/bin/view/Main/TWikiGroups"> <img src="/twiki/pub/TWiki/TWikiDocGraphics/group.gif" width="16" height="16" alt="Group" title="Group" border="0" /> Groups</a> </li> <li> <a class="twikiLink" href="/twiki/bin/view/Main/WebTopicList"> <img src="/twiki/pub/TWiki/TWikiDocGraphics/index.gif" width="16" height="16" alt="Index" title="Index" border="0" /> Index</a> </li> <li> <span class="twikiNewLink"><a href="https://www.sprace.org.br/twiki/bin/edit/Main/WebSearch?topicparent=Main.TestLink;nowysiwyg=0" rel="nofollow" title="Search (this topic does not yet exist; you can create it)"> <img src="/twiki/pub/TWiki/TWikiDocGraphics/searchtopic.gif" width="16" height="16" alt="Search topic" title="Search topic" border="0" /> Search</a></span> </li> <li> <a class="twikiLink" href="/twiki/bin/view/Main/WebChanges"> <img src="/twiki/pub/TWiki/TWikiDocGraphics/changes.gif" width="16" height="16" alt="Changes" title="Changes" border="0" /> Changes</a> </li> <li> <a class="twikiLink" href="/twiki/bin/view/Main/WebNotify"> <img src="/twiki/pub/TWiki/TWikiDocGraphics/notify.gif" width="16" height="16" alt="Notify" title="Notify" border="0" /> Notifications</a> </li> <li> <a class="twikiLink" href="/twiki/bin/view/Main/WebRss"> <img src="/twiki/pub/TWiki/TWikiDocGraphics/feed.gif" width="16" height="16" alt="RSS feed, rounded corners" title="RSS feed, rounded corners" border="0" /> RSS Feed</a> </li> <li> <a class="twikiLink" href="/twiki/bin/view/Main/WebStatistics"> <img src="/twiki/pub/TWiki/TWikiDocGraphics/statistics.gif" width="16" height="16" alt="Statistics" title="Statistics" border="0" /> Statistics</a> </li> <li> <a class="twikiLink" href="/twiki/bin/view/Main/WebPreferences"> <img src="/twiki/pub/TWiki/TWikiDocGraphics/wrench.gif" width="16" height="16" alt="Wrench, tools" title="Wrench, tools" border="0" /> Preferences</a> </li></ul> </li> <li> <img src='https://www.sprace.org.br/twiki/pub/TWiki/TopMenuSkin/menu-right.png' alt='' width='8' height='22' /> </li> <li> <a href='https://www.sprace.org.br/twiki/bin/view/Main/TWikiUsers' title='TWikiUsers (parent topic)'>P</a> </li> <li> <img src='https://www.sprace.org.br/twiki/pub/TWiki/TopMenuSkin/menu-right.png' alt='' width='8' height='22' /> </li> <li> <a href='https://www.sprace.org.br/twiki/bin/view/Main/JadirSilva' title='JadirSilva (parent topic)'>P</a> </li> <li> <img src='https://www.sprace.org.br/twiki/pub/TWiki/TopMenuSkin/menu-right.png' alt='' width='8' height='22' /> </li> <li> <a href="https://www.sprace.org.br/twiki/bin/view/Main/TestLink" title="Topic TestLink -- JadirSilva - 2009-01-22 - r6">View <img alt="menu-down.gif" src="https://www.sprace.org.br/twiki/pub/TWiki/TWikiDocGraphics/menu-down.gif" /></a> <ul> <li> <a href='/twiki/bin/view/Main/TestLink?raw=on&rev=6' rel='nofollow' title='View raw text without formatting'>Raw View</a> </li> <li> <a href='/twiki/bin/view/Main/TestLink?cover=print&rev=6' rel='nofollow' title='Printable version of this topic'>Print version</a> </li> <li> <a href='/twiki/bin/oops/Main/TestLink?template=backlinksweb' rel='nofollow' title='Search the Main web for topics that link to here'>Find backlinks</a> </li> <li> <a href='/twiki/bin/rdiff/Main/TestLink?type=history' rel='nofollow' title='View total topic history'>History</a> </li> <li> <a href='/twiki/bin/oops/Main/TestLink?template=oopsmore&param1=6&param2=6' rel='nofollow' title='Delete or rename this topic; set parent topic; view and compare revisions'>More topic actions</a> </li></ul> </li> <li> <a href='https://www.sprace.org.br/twiki/bin/edit/Main/TestLink?t=1713571025' rel='nofollow' title='Edit this topic text'>Edit <img alt="menu-down.gif" src="https://www.sprace.org.br/twiki/pub/TWiki/TWikiDocGraphics/menu-down.gif" /></a> <ul> <li> <a href='https://www.sprace.org.br/twiki/bin/edit/Main/TestLink?t=1713571025;nowysiwyg=1' rel='nofollow' title='Raw Edit this topic text'>Raw edit</a> </li> <li> <a href='/twiki/bin/attach/Main/TestLink' rel='nofollow' title='Attach an image or document to this topic'>Attach file or image</a> </li> <li> <a href="https://www.sprace.org.br/twiki/bin/manage/Main/TestLink?t=1713571025;action=editSettings" target="_top">Edit topic preference settings</a> </li> <li> <a href="https://www.sprace.org.br/twiki/bin/oops/Main/TestLink?template=oopsmore#SetParent" target="_top">Set new parent</a> </li> <li> <a href='/twiki/bin/oops/Main/TestLink?template=oopsmore&param1=6&param2=6' rel='nofollow' title='Delete or rename this topic; set parent topic; view and compare revisions'>More topic actions</a> </li></ul> </li></ul> <p /> </div></td><td><div class="twTopMenuTab" style="float:right"> <ul> <li> <a class="twikiLink" href="/twiki/bin/view/Main/TWikiGuest"> <img src="/twiki/pub/TWiki/TWikiDocGraphics/person.gif" width="16" height="16" alt="Person" title="Person" border="0" /> Account <img src="/twiki/pub/TWiki/TWikiDocGraphics/menu-down.gif" width="14" height="16" alt="Menu dropdown" title="Menu dropdown" border="0" /></a> <ul> <li> <a href="/twiki/bin/login/Main/TestLink?origurl=/twiki/bin/view/Main/TestLink%3frev%3d6">Log In</a> </li></ul> </li></ul> </div></td><td><div class="twTopMenuTab"> <ul> <li> <a class="twikiLink" href="/twiki/bin/view/TWiki/WebHome"><img src="/twiki/pub/TWiki/TWikiDocGraphics/twiki-help.gif" width="16" height="16" border="0" alt="Help" title="TWiki help" style="margin: 1px;" /></a> </li></ul> </div></td> <td width="40"><img src="/twiki/pub/TWiki/TopMenuSkin/spacer.gif" width="40" height="1" alt="" /></td> </tr> </table> </div> </div> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr style="background-image: url(/twiki/pub/TWiki/TopMenuSkin/banner-bg.png); background-repeat: repeat-x;"> <p /> <!-- <td width="40"><img src="/twiki/pub/TWiki/TopMenuSkin/spacer.gif" width="40" height="58" alt="" /></td> <td width="30"><span id="twikiLogo" class="twikiImage"><a href="/twiki/bin/view/Main/WebHome"><img src="/twiki/pub/Main/WebPreferences/sprace.png" border="0" alt="Home" title="Home" style="border:none;" /></a></span></td> --> <p /> <td height="70" align="right" valign="middle" style="background-image: url(/twiki/pub/Main/WebPreferences/header.png); background-repeat: repeat-x;" class="patternMetaMenu"> <ul> <li> <form name="jumpForm" action="/twiki/bin/view/Main/TestLink"><input id="jumpFormField" type="text" class="twikiInputField" name="topic" value="" size="10" /><noscript> <input type="submit" class="twikiButton" size="5" name="submit" value="Jump" /> </noscript> </form> </li> <li> <form name="quickSearchForm" action="/twiki/bin/view/Main/WebSearch"><input type="text" class="twikiInputField" id="quickSearchBox" name="search" value="" size="10" /><input type="hidden" name="scope" value="all" /><input type="hidden" name="web" value="Main" /><noscript> <input type="submit" size="5" class="twikiButton" name="submit" value="Search" /> </noscript> </form> </li> <li> </li></ul> </td> <p /> <!-- <td width="15"><img src="/twiki/pub/TWiki/TopMenuSkin/spacer.gif" width="15" height="1" alt="" /></td> <td width="165" valign="bottom"><div id="twTopBarButtons"> <ul> <li> <span><a href='https://www.sprace.org.br/twiki/bin/edit/Main/TestLink?t=1713571025;nowysiwyg=0' rel='nofollow' title='Edit this topic text' accesskey='e'><img src='/twiki/pub/TWiki/TWikiDocGraphics/uweb-o14.gif' width='14' height='14' border='0' alt='' /> <span class='twikiAccessKey'>E</span>dit</a></span> </li> <li> <span><a href='/twiki/bin/attach/Main/TestLink' rel='nofollow' title='Attach an image or document to this topic' accesskey='a'><span class='twikiAccessKey'>A</span>ttach</a></span> </li></ul> </div></td> <td width="40"><img src="/twiki/pub/TWiki/TopMenuSkin/spacer.gif" width="40" height="1" alt="" /></td> --> <p /> </tr> </table> <script type="text/javascript"> var twTopMenuBarCloseTimer = null; var twTopMenuBarTimerMsec = 1000; function twToggleTopMenuBar( isHover ) { if( 'off' == 'on' || 'off' == '1' ) { return; } var displayState = 'none'; if( $(window).scrollTop()<22 || isHover>0 ) { displayState = 'block'; if(twTopMenuBarCloseTimer) { window.clearTimeout(twTopMenuBarCloseTimer); twTopMenuBarCloseTimer = null; } } else { if(!twTopMenuBarCloseTimer && isHover>=0 ) { twTopMenuBarCloseTimer = window.setTimeout(twCloseTopMenuBar, twTopMenuBarTimerMsec); return; } } if( $('#topmenu-bar').css('display') != displayState ) { $('#topmenu-bar').css('display', displayState); } }; function twCloseTopMenuBar() { twToggleTopMenuBar(-1); } $(document).ready(function () { twToggleTopMenuBar(0); }); $(window).scroll(function () { twToggleTopMenuBar(0); }); $('#topmenu-start').hover( function () { twToggleTopMenuBar(1); }, function () { twToggleTopMenuBar(0); } ); </script></div><!-- /twTopBar--><div id="patternBottomBar"><div id="patternBottomBarContents"><div id="patternWebBottomBar"><div class="twikiCopyright"><span class="twikiRight"> <a href="http://twiki.org/"><img src="/twiki/pub/TWiki/TWikiLogos/T-badge-88x31.gif" alt="This site is powered by the TWiki collaboration platform" width="88" height="31" title="This site is powered by the TWiki collaboration platform" border="0" /></a></span><span class="twikiRight" style="padding:0 10px 0 10px"> <a href="http://www.perl.org/"><img src="/twiki/pub/TWiki/TWikiLogos/perl-logo-88x31.gif" alt="Powered by Perl" width="88" height="31" title="Powered by Perl" border="0" /></a></span>Copyright © 2008-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors. <br /> Ideas, requests, problems regarding TWiki? <a href='mailto:web_admin@ncc.unesp.br?subject=TWiki%20Feedback%20on%20Main.TestLink'>Send feedback</a></div><!--/patternWebBottomBar--></div><!-- /patternBottomBarContents--></div><!-- /patternBottomBar--> </div><!-- /patternPage--> </div><!-- /patternPageShadow--> </div><!-- /patternScreen--> </body></html> <p style="overflow: auto; position: fixed; height: 0pt; width: 0pt"> <a href="http://antalya.vipescorttr.net/" rel="dofollow">antalya escort</a> <a href="http://bursa.vipescorttr.net/" rel="dofollow">bursa escort</a> <a href="http://eskisehir.vipescorttr.net/" rel="dofollow">eskisehir escort</a> <a href="http://istanbul.vipescorttr.net/" rel="dofollow">istanbul escort</a> <a href="http://izmir.vipescorttr.net/" rel="dofollow">izmir escort</a> </p>