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
|
#! /bin/sh
# PCP QA Test No. 652
# checks basic pmdasystemd functionality
#
# Copyright (c) 2012 Red Hat, Inc. All Rights Reserved.
#
seq=`basename $0`
echo "QA output created by $seq"
# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check
[ "$PCPQA_SYSTEMD" = no ] && _notrun "we're not using systemd here"
[ -d $PCP_VAR_DIR/pmdas/systemd ] || _notrun "systemd PMDA not installed"
which systemd-cat >/dev/null 2>&1 || _notrun no systemd-cat
which journalctl >/dev/null 2>&1 || _notrun no journalctl
journal_version=`journalctl --version | grep ^systemd | awk '{print $2}'`
[ "$journal_version" -ge 193 ] || _notrun journalctl too old "$journal_version"
_cleanup()
{
_restore_pmda_install $iam
$sudo rm -fr $tmp.dir
$sudo rm -f $tmp.*
exit $status
}
_filter()
{
sed \
-e "s,$tmp,TMPFILE,g" \
-e "s,$PCP_VAR_DIR,PCP_VAR_DIR,g" \
-e 's/[0-9][0-9]:[0-9][0-9]:[0-9][0-9]\.[0-9][0-9]*[0-9]/TIMESTAMP/g'
}
_filter_probe()
{
sed \
-e 's/^\(systemd.journal.count 1\) [0-9][0-9]*/\1 COUNT/g' \
-e 's/^\(systemd.journal.bytes 1\) [0-9][0-9]*/\1 BYTES/g'
}
_filter_events()
{
grep -F 'MESSAGE=yo'
}
_filter_events_raw()
{
grep -F '4d4553534147453d796f'
}
_filter_pmda_warning()
{
# drop the adm-user-doesn't-exist warnings, optional blank line
grep -F -v 'Warning:' | grep . |
grep -v "Starting pm.*" # don't fuss about what pcp daemons are default-on
}
iam=systemd
status=1 # failure is the default!
trap "_cleanup" 0 1 2 3 15
$sudo rm -fr $tmp.dir
#debug# exec 2>$seq_full
#debug# set -x # trace this test case
# real QA test starts here
_prepare_pmda_install $iam || _exit 1
# install PMDA accepting the defaults (esp config file)
$sudo ./Remove </dev/null >>$seq_full 2>&1
$sudo ./Install </dev/null >$tmp.out 2>&1
_wait_for_pmcd || _exit 1
cat $tmp.out >>$seq_full
cat $tmp.out | _filter_pcp_stop | _filter_pmda_install | _filter_pmda_warning | _filter
# want to make sure PMDA is really healthy ... on vm02 we got
# this far but the PMDA was dead ...
#
numval=`pmprobe -v systemd.numclients | tee -a $seq_full | $PCP_AWK_PROG '{print $2}'`
if [ "$numval" -lt 0 ]
then
echo "Arrgh ... PMDA is not well!"
pminfo -f systemd
ps "$PCP_PS_ALL_FLAGS" | grep -E "[p]m[cd]|[P]PID"
echo "=== PMDA's log ==="
cat $PCP_LOG_DIR/pmcd/systemd.log
echo "=== ==="
echo "=== pmcd's log ==="
cat $PCP_LOG_DIR/pmcd/pmcd.log
exit
fi
echo | tee -a $seq_full
echo "=== 1. scalar metrics ===" | tee -a $seq_full
pmprobe -v systemd | tee -a $seq_full | _filter_probe
echo | tee -a $seq_full
echo "=== 2. journald.records ===" | tee -a $seq_full
(pmsleep 2.5; echo yo-$seq-2 | systemd-cat -p notice) &
pmevent -T 6 systemd.journal.records | tee -a $seq_full | _filter_events
echo | tee -a $seq_full
echo "=== 3. journald.records ===" | tee -a $seq_full
(pmsleep 2.5; echo yo-$seq-3 | systemd-cat -p notice) &
pmevent -T 6 systemd.journal.records_raw | tee -a $seq_full | _filter_events_raw
# remove PMDA to ensure proper cleanup (in case it wasnt already installed beforehand)
$sudo ./Remove </dev/null >>$seq_full 2>&1
$sudo journalctl --lines=4 MESSAGE=yo-$seq-2 MESSAGE=yo-$seq-3 >>$seq_full 2>&1
cat $PCP_LOG_DIR/pmcd/systemd.log >>$seq_full
status=0
exit
|