代码搜索结果
找到约 10,000 项符合
Monitor 的代码
monitor
title Monitor Various Aspects of the Running Host
description The following check up on various aspects of a host.
token proc
info Check for processes that should be running.
info # proc NAME [MAX=0
monitor
#!/bin/sh
MONITORS=/etc/ha/scripts/monitor.d
LS=/bin/ls
SLEEP=/bin/sleep
cd $MONITORS
for i in `$LS $MONITORS`
do
if [ -x $MONITORS/$i ]; then
$MONITORS/$i
fi
if [ $? -ne 0 ]; then
cd
monitor
title Monitor Various Aspects of the Running Host
description The following check up on various aspects of a host.
token proc
info Check for processes that should be running.
info # proc NAME [MAX=0
monitor
title Monitor Various Aspects of the Running Host
description The following check up on various aspects of a host.
token proc
info Check for processes that should be running.
info # proc NAME [MAX=0