/var/lib/pcp/testsuite/184 is in pcp-testsuite 3.8.12ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #! /bin/sh
# PCP QA Test No. 184
# simplest possible case for pmnewlog
#
# Copyright (c) 1995-2002 Silicon Graphics, Inc. All Rights Reserved.
#
seq=`basename $0`
echo "QA output created by $seq"
# get standard filters
. ./common.product
. ./common.filter
. ./common.check
signal=$PCP_BINADM_DIR/pmsignal
newlog=$PCP_BINADM_DIR/pmnewlog
trap "$sudo $signal -a pmlogger >/dev/null 2>&1; $sudo rm -f $tmp.*; exit" 0 1 2 3 15
_filter_dumplog()
{
sed \
-e '/\[[0-9][0-9]* bytes\]/d' \
-e '/^[0-9][0-9]:[0-9][0-9]:[0-9][0-9]\.[0-9][0-9][0-9]/s//TIMESTAMP/' \
-e 's/^\(log started *\).*/\1DATESTAMP/' \
-e 's/^\(last log entry *\).*/\1DATESTAMP/' \
-e 's/^\(current time *\).*/\1DATESTAMP/' \
-e 's/^\( *commencing *\).*/\1DATESTAMP/' \
-e 's/^\( *ending *\).*/\1DATESTAMP/' \
-e '/^Performance metrics/s/host .*/host HOST/' \
-e '/(pmcd.control.register)/s/value [0-9][0-9]*/value INTEGER/' \
-e '/^InDom: 2.1/,/^$/s/[0-9][0-9]* or "[0-9][0-9]*"/LOGGER_PID or "LOGGER_PID"/g' \
-e '/pmcd.pmlogger.*inst/s/[0-9][0-9]* or "[0-9][0-9]*"/LOGGER_PID or "LOGGER_PID"/' \
-e '/pmcd.pmlogger.port/s/value .*/value PORT/' \
-e '/pmcd.pmlogger.host/s/value ".*/value "HOST"/' \
-e '/pmcd.pmlogger.archive/s/value ".*/value "PATH"/' \
| $PCP_AWK_PROG '
$1 == "TIMESTAMP" && NF == 4 { print "TIMESTAMP 0 OFFSET OFFSET"; next }
{ print }'
}
_filter_newlog()
{
sed \
-e 's/process [0-9][0-9]*/process PID/' \
-e '/pmlogger -L/s/.*/-- ps line removed --/' \
-e '/ \/usr\/pcp\/bin\/pmlogger /s/.*/-- ps line removed --/' \
-e 's/^\/usr\/pcp\/bin\/pmlogger/pmlogger/' \
-e "/^pmlogger/s/$seq-[0-9][0-9]*/SEQ-PID/g" \
-e '/configuration file saved as/s/[0-9][0-9]*/PID/g' \
-e 's/\[[0-9][0-9]*]/[PID]/' \
-e '/PMCD host/d' \
-e 's/ host [^ ]*/ host HOST/g' \
-e '/^Getting logged/s/host HOST/host name/' \
-e 's/ -h [^ ]*/ -h HOST/g' \
-e 's/ -c [^ ]*/ -c CONF/g' \
-e 's/ SIG.* done/ signal stuff ... done/' \
-e '/Error \[<stdin>,/d' \
-e '/Warning \[<stdin>,/d' \
-e '/Not connected to any/d' \
-e '/Logging statement ignored/d' \
-e '/Problem with lookup for metric/d' \
-e '/Try again. Information not currently available/d' \
-e '/Unknown or illegal metric identifier/d' \
-e '/Unknown or illegal instance domain identifier/d' \
-e '/Metric not supported by this version/d' \
-e '/^log size/s/[0-9][0-9]*/BYTES/' \
-e '/^Contacting pmlogger /d' \
-e '/^pmnewlog: Warning: errors from talking /d' \
-e '/^continuing .../d' \
-e '/New pmlogger configuration file saved /d' \
-e '/^[ ]*$/d' \
-e 's;/tmp/PID/pcp;/tmp/PID;g'
}
# real QA test starts here
# Note:
# Logging a metric with an instance domain so that the record will be flushed.
cat <<End-of-File >$tmp.config
log mandatory on once pmcd.control.register["0"]
End-of-File
$sudo rm -f $tmp.arch.*
_start_up_pmlogger -L -c $tmp.config -l $tmp.log $tmp.arch >$tmp.err 2>&1
logger_pid=$pid
_wait_for_pmlogger $logger_pid $tmp.log
echo "=== old log ===" | tee $seq.full
pmdumplog -a $tmp.arch | tee -a $seq.full | _filter_dumplog
echo | tee -a $seq.full
echo "=== pmnewlog ==" | tee -a $seq.full
$sudo $newlog -V -p $logger_pid -l $tmp.log $tmp.newarch 2>&1 >$tmp.out
cat $tmp.out >>$seq.full
_filter_newlog <$tmp.out | _filter_dumplog
# Cleanup after youself
$sudo rm -f `dirname $tmp`/Latest
echo
echo "=== check old pmlogger has gone ==="
ps $PCP_PS_ALL_FLAGS | $PCP_AWK_PROG '$2 == '$logger_pid' { print }'
echo | tee -a $seq.full
echo "=== check what's in the new log ===" | tee -a $seq.full
sleep 1
pmdumplog -a $tmp.newarch | tee -a $seq.full | _filter_dumplog
|