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
|
#!/bin/sh
# PCP QA Test No. 1353
# pmlogger - pass0 scanner checks
#
# Copyright (c) 2021 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
_cleanup()
{
cd $here
$sudo rm -rf $tmp $tmp.*
}
status=0 # success is the default!
trap "_cleanup; exit \$status" 0 1 2 3 15
_filter()
{
sed \
-e "s@$PCP_BINADM_DIR@PCP_BINADM_DIR@" \
-e "s@$PCP_VAR_DIR@PCP_VAR_DIR@" \
-e "s@$tmp@TMP@" \
-e 's/ key=[1-9][0-9]*/ key=NNN/' \
| _filter_pmlogger_log
}
# real QA test starts here
cat <<End-of-File >$tmp.config
# not_a_name_0 in comment
#
log advisory on once { sample.bin ["bin-100", "bin-200", "]"] }
log
mandatory
on
once
{
is_a_name_0
}
log advisory on 1 minute { is_a_name_1 [ "]", "not_a_name_1", "not_a_name_2" ] }
log advisory on 10 minutes { is_a_name_2 [ "]", "not_a_name_3", "not_a_name_4" ] }
log mandatory on 15 seconds { is_a_name_3 is_a_name_4 # is_not_a_name_5
# is_not_a_name_6
is_a_name_5
dup_key_ key_dup_ # these will be hash key synonyms
sample.bin # duplicate name
sample.bad.unknown # no pmDesc
}
End-of-File
pmlogger -C -c $tmp.config -Dappl6 2>&1 \
| tee -a $seq_full \
| _filter
# success, all done
exit
|