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
|
#!/bin/sh
# PCP QA Test No. 678
# pmlogger_rewrite with gzip compression
#
# Copyright (c) 2018 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
if which gzip >/dev/null 2>&1
then
PROG=gzip
SUFF=gz
else
_notrun "cannot find a gzip compression program!"
fi
_cleanup()
{
cd $here
$sudo rm -rf $tmp $tmp.*
}
_filter()
{
sed \
-e "s@$tmp@TMP@g" \
# end
}
status=1 # failure is the default!
trap "_cleanup; exit \$status" 0 1 2 3 15
# setup the log farm
#
cat <<End-of-File >$tmp.farm
onevol archives/snort-disks 20011002
onevol archives/moomba.client 20011003
multivol archives/ok-mv-bar 20011002
End-of-File
mkdir $tmp
if ./mk.logfarm -c $tmp.farm $tmp >$tmp.out 2>&1
then
_filter <$tmp.out
else
cat $tmp.out
echo "Arrgh ... mk.logfarm failed!"
exit
fi
# real QA test starts here
cd $tmp
echo
echo "--- rewrite with data volume compression for multivol ---"
cat <<End-of-File >$tmp.rewrite
metric pmcd.pmlogger.port {
pmid -> 2.4095.1023
}
End-of-File
for file in multivol/*.[0-9]
do
$PROG $file
done
$PCP_BINADM_DIR/pmlogger_rewrite -VV -c $tmp.rewrite onevol/*.meta multivol/*.meta
for arch in onevol/*.meta multivol/*.meta
do
arch=`echo $arch | sed -e 's/.meta//'`
echo $arch:
pminfo -a $arch -m pmcd.pmlogger.port
done
rm -rf onevol multivol
cd $here
if ./mk.logfarm -c $tmp.farm $tmp >$tmp.out 2>&1
then
:
else
cat $tmp.out
echo "Arrgh ... mk.logfarm failed!"
exit
fi
cd $tmp
echo
echo "--- rewrite with metadata and volume compression for onevol and multivol ---"
cat <<End-of-File >$tmp.rewrite
metric pmcd.pmlogger.port {
pmid -> 2.4095.1023
}
End-of-File
for file in multivol/*.[0-9] multivol/*.meta onevol/*.[0-9] onevol/*.meta
do
$PROG $file
done
$PCP_BINADM_DIR/pmlogger_rewrite -VV -c $tmp.rewrite onevol/*.meta* multivol/*.meta*
for arch in onevol/*.meta* multivol/*.meta*
do
arch=`echo $arch | sed -e 's/.meta.*//'`
echo $arch:
pminfo -a $arch -m pmcd.pmlogger.port
done
cd $tmp
# success, all done
status=0
exit
|