1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
#!/bin/sh
# PCP QA Test No. 793
# pmlogger_check and pmlogger_daily with shell components in the dir field
# of the control file
#
# Copyright (c) 2015 Ken McDonell. All Rights Reserved.
#
seq=`basename $0`
echo "QA output created by $seq"
# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check
NEEDREWRITE=$PCP_LOG_DIR/pmlogger/.NeedRewrite
status=1 # failure is the default!
trap "_cleanup; exit \$status" 0 1 2 3 15
signal=$PCP_BINADM_DIR/pmsignal
[ -f $NEEDREWRITE ] && $sudo mv $NEEDREWRITE $NEEDREWRITE.$seq
_stop_auto_restart pmlogger
_filter()
{
sed \
-e 's/\.\.\.*/[dots]/' \
-e "s;$PCP_BINADM_DIR/pmlogger;pmlogger;g" \
-e "s/$FULLLOCALHOST/LOCALHOST/g" \
-e "s/$LOCALHOST/LOCALHOST/g" \
-e "s/localhost/LOCALHOST/g" \
-e "s/local:/LOCALHOST/g" \
-e 's/control:[0-9][0-9]*]/control:LINE]/' \
-e 's;/usr/var;/var;g' \
-e '/^Roll .*\/NOTICES/d' \
-e '/^Start .*\/NOTICES/d' \
-e '/^Start \[/s/ 2[0-9:. -]*/ DATESTAMP/' \
-e '/^End \[/s/ 2[0-9:. -]*/ DATESTAMP /' \
-e "s;$tmp;TMP;g" \
-e '/Duplicate/d' \
-e '/Roll [^ ]*\/NOTICES /d' \
-e '/Start new [^ ]*\/NOTICES$/d' \
-e '/^Reconfigured: .*pmlogconf./d' \
-e '/^No reconfigure: .*pmlogconf./d' \
-e '/Restarting/s/process [0-9][0-9]*/process PID/' \
-e '/Looking for pmlogger/s/process [0-9][0-9]*/process PID/' \
-e '/Terminating pmlogger/s/process [0-9][0-9]*/process PID/' \
-e '/^pmlogger \[/{
s/\[[0-9][0-9]*/[PID/
s/from host .*/from host .../
}' \
-e '/pmlogger -m/s/ [0-9][0-9][0-9][0-9][01][0-9][0-3][0-9]\.[0-5][0-9]\.[0-5][0-9]/ DATE.TIME/' \
-e '/^pcp /s/ .*/ .../' \
-e '/^PMCD host /s/host .*/host .../' \
-e '/^log started /s/started .*/started .../' \
-e '/^last log entry /s/entry .*/entry .../' \
-e '/^current time /s/time .*/time .../' \
-e '/^log size /s/size .*/size .../' \
| _filter_cron_scripts
}
_stop_loggers()
{
echo "entering _stop_loggers ..." >>$seq_full
$PCP_PS_PROG $PCP_PS_ALL_FLAGS \
| grep -E '[P]PPID|/[p]mlogger( |$)' \
| tee -a $seq_full \
| grep -v '[P]PID' \
| $PCP_AWK_PROG '{print $2}' >$tmp.pids
$sudo $signal -a -s TERM pmlogger
for pid in `cat $tmp.pids`
do
_wait_pmlogger_end "$pid" || _exit 1
echo "pmlogger [$pid] is done" >>$seq_full
done
}
_cleanup()
{
cd $here
echo
echo "Cleaning up"
[ -f $NEEDREWRITE.$seq ] && $sudo mv $NEEDREWRITE.$seq $NEEDREWRITE
_stop_loggers >/dev/null 2>&1
for x in A B C
do
echo "--- $tmp.$x.log ---" >>$seq_full
cat $tmp.$x.log >>$seq_full
echo "--- end pmlogger log ---" >>$seq_full
if [ -f $tmp.$x.strace ]
then
echo "--- $tmp.$x.strace ---" >>$seq_full
cat $tmp.$x.strace >>$seq_full
echo "--- end strace ---" >>$seq_full
fi
done
_service pmlogger restart 2>&1 \
| _filter_pcp_restart \
_wait_for_pmlogger
_restore_auto_restart pmlogger
if $pmproxy_was_running
then
# pmproxy needs a chance to get stable ... otherwise we may see
# badness in the PMNS for the pmproxy.* metrics if check's callback
# checks the PMNS .. seen on vm11 (Debian 11.1)
#
echo "Restart pmproxy ..." >>$seq_full
_service pmproxy restart >>$seq_full 2>&1
_wait_for_pmproxy
fi
$sudo rm -rf $tmp $tmp.*
}
_setup()
{
if ! _service pmlogger stop; then _exit 1; fi \
| _filter_pcp_stop
_stop_loggers
cd
}
_check_loggers()
{
# Need to make sure all the pmloggers have really started ...
# wait (up to 30 secs) for each
#
for x in A B C
do
rm -f $tmp.found $tmp.$x.pid
z=0
while [ "$z" -lt 30 ]
do
# Cannot use $tmp as the path prefix, because on some systems
# /var/tmp (what $tmp is set to) and /tmp are symlinked, and
# pmlogger reports the path in the control file using the real
# name (/tmp) not the symlink name (/var/tmp)
# ... spotted on vm37 (OpenBSD 6.7)
# Fortunately /$x/ is sufficient to identify the desired
# pmlogger control file.
#
pid=`grep -l "/$x/" $PCP_TMP_DIR/pmlogger/[0-9]* | sed -e 's/.*pmlogger.//'`
if [ -n "$pid" ]
then
echo "Found pid $pid for $tmp/$x after $z iterations" >>$seq_full
echo "status" | pmlc $pid >$tmp.pmlc.out 2>&1
cat $tmp.pmlc.out >>$seq_full
if grep '^log size' $tmp.pmlc.out >/dev/null 2>&1
then
touch $tmp.found
echo $pid >$tmp.$x.pid
break
fi
fi
z=`expr $z + 1`
sleep 1
done
if [ ! -f $tmp.found ]
then
echo "Arrgh ... pmlogger_* failed to keep pmlogger running for $tmp/$x" | tee -a $seq_full
echo "--- $tmp ---" >>$seq_full
ls -l $tmp* >>$seq_full
echo "--- $tmp/$x ---" >>$seq_full
ls -l $tmp/$x >>$seq_full
echo "--- $tmp.$x.log ---" >>$seq_full
cat $tmp.$x.log >>$seq_full
echo "--- end pmlogger log ---" >>$seq_full
for log in log.prev log.from.check log.from.check.prev
do
echo "--- $tmp/$log ---" >>$seq_full
if [ -f $tmp/$log ]
then
cat $tmp/$log >>$seq_full
else
echo "<missing>" >>$seq_full
fi
done
echo "--- end of logs ---" >>$seq_full
$PCP_PS_PROG $PCP_PS_ALL_FLAGS | grep -E '[P]PID|/[p]mlogger( |$)' >>$seq_full
for state in $PCP_TMP_DIR/pmlogger/[0-9]*
do
echo "=== $state ===" | tee -a $seq_full
cat $state | tee -a $seq_full
done
echo "See $seq_full for details"
status=0
exit
fi
done
}
cat >$tmp.config <<End-of-File
log mandatory on 1 sec {
hinv.ndisk
hinv.ncpu
}
End-of-File
pmproxy_was_running=false
[ -f $PCP_RUN_DIR/pmproxy.pid ] && pmproxy_was_running=true
echo "pmproxy_was_running=$pmproxy_was_running" >>$seq_full
# real QA test starts here
_setup
mkdir $tmp
$sudo chown $PCP_USER:$PCP_GROUP $tmp
# this one is set via the environment
#
qatmp=$tmp; export qatmp
# control file
#
cat >$tmp.control <<End-of-File
\$version=1.1
\$PMLOGGER_CHECK_SKIP_JANITOR=yes
\$A=A
#
# $qatmp from the caller's environment
# $A from the control line above
LOCALHOSTNAME n n \$qatmp/\$A --pmlc-ipc-version=2 -c $tmp.config -l $tmp.A.log -Dservices,appl3,appl4
LOCALHOSTNAME n n '\$(echo $qatmp/B)' --pmlc-ipc-version=2 -c $tmp.config -l $tmp.B.log -Dservices,appl3,appl4
LOCALHOSTNAME n n "$qatmp/\`echo c | tr '[a-z]' '[A-Z]'\`" --pmlc-ipc-version=2 -c $tmp.config -l $tmp.C.log -Dservices,appl3,appl4
End-of-File
sudo -u $PCP_USER -g $PCP_GROUP cp $tmp.control $tmp/control
cat $tmp/control >>$seq_full
echo "qatmp=$qatmp" >>$seq_full
echo "PCP_TMP_DIR=$PCP_TMP_DIR" >>$seq_full
echo "pmlogger_check #1" | tee -a $seq_full
# need to be a place the user $PCP_USER can cd to from pmlogger_check
#
cd /var/tmp
$sudo -u $PCP_USER -g $PCP_GROUP sh -c "qatmp=$qatmp $PCP_BINADM_DIR/pmlogger_check -V -c $tmp/control -l $tmp/log"
cd $here
if [ -s $tmp/log ]
then
echo "$tmp.log from pmlogger_check #1 ..." >>$seq_full
cat $tmp/log | tee -a $seq_full | _filter
fi
_check_loggers
for x in A B C
do
ls -l $tmp/$x >>$seq_full
echo `ls $tmp/$x | grep "\.meta" | wc -l | sed -e 's/ //g'` archives in TMP/$x
done
# let pmloggers run for a while
sleep 1
_stop_loggers
echo "pmlogger_check #2" | tee -a $seq_full
cd /var/tmp
$sudo -u $PCP_USER -g $PCP_GROUP sh -c "qatmp=$qatmp $PCP_BINADM_DIR/pmlogger_check -V -c $tmp/control -l $tmp/log"
cd $here
if [ -s $tmp/log ]
then
echo "$tmp.log from pmlogger_check #2 ..." >>$seq_full
cat $tmp/log | tee -a $seq_full | _filter
fi
_check_loggers
for x in A B C
do
echo "--- $tmp/$x ---" >>$seq_full
ls -l $tmp/$x >>$seq_full
echo `ls $tmp/$x | grep "\.meta" | wc -l | sed -e 's/ //g'` archives in TMP/$x
done
# let pmloggers run for a while
sleep 1
echo "pmlogger processes ..." >>$seq_full
$PCP_PS_PROG $PCP_PS_ALL_FLAGS | grep -E '[P]PID|/[p]mlogger( |$)' >>$seq_full
# this test has a history of failing in the pmlogger_daily step below
# when one (or more) of the pmlogger processes vanishes, so we're
# taking extreme measures here!
#
if which strace >/dev/null 2>&1
then
for x in A B C
do
$sudo strace -p `cat $tmp.$x.pid` >$tmp.$x.strace 2>&1 &
done
fi
echo
echo "pmlogger_daily"
cd /var/tmp
$sudo -u $PCP_USER -g $PCP_GROUP sh -c "qatmp=$qatmp $PCP_BINADM_DIR/pmlogger_daily -P -D -Z -VV -x never -c $tmp/control -l $tmp/log"
cd $here
if [ -s $tmp/log ]
then
echo "$tmp.log from pmlogger_daily ..." >>$seq_full
cat $tmp/log >>$seq_full
sed -n <$tmp/log \
-e '/^=== /p' \
-e '/^$/p' \
-e '/merge/p' \
| _filter
fi
# wait a bit to be sure all pmloggers have finished their re-exec
# song and dance
sleep 1
_check_loggers
for x in A B C
do
echo "--- $tmp/$x ---" >>$seq_full
ls -l $tmp/$x >>$seq_full
echo `ls $tmp/$x | grep "\.meta" | wc -l | sed -e 's/ //g'` archives in TMP/$x
done
rm -f $tmp.?.strace
# success, all done
status=0
exit
|