/var/lib/pcp/testsuite/359 is in pcp-testsuite 3.10.8build1.
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 | #!/bin/sh
# PCP QA Test No. 359
# Simple sanity check that we can get through validation of all
# of the metrics without any surprises
#
# Copyright (c) 2010 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
status=0 # success is the default!
$sudo rm -rf $tmp.* $seq.full
trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
_filter()
{
sed \
-e '/No value(s) available/d' \
-e '/Metric not supported by this version of monitored application/d' \
-e '/cgroup\.groups: pmLookupName: Unknown metric name/d' \
-e '/proc\.psinfo\.cgroups: No data available/d' \
-e '/^sample\.needprofile:/d' \
-e '/^sample\.bad\.unknown:/d' \
-e '/^sample\.bad\.nosupport:/d' \
-e '/^sampledso\.needprofile:/d' \
-e '/^sampledso\.bad\.unknown:/d' \
-e '/^sampledso\.bad\.nosupport:/d' \
-e '/^proc\.schedstat.*: Unknown or .*/d' \
-e '/^proc\.schedstat.*: No permission/d' \
-e '/^proc\.psinfo.*: No permission/d' \
-e '/^proc\.psinfo\.cgroups: Unknown or illegal instance identifier/d' \
-e '/^proc\.psinfo\.labels: Unknown or illegal instance identifier/d' \
-e '/^proc\.memory.*: No permission/d' \
-e '/^proc\.id.*: No permission/d' \
-e '/^proc\.fd.*: No permission/d' \
-e '/^proc\.io.*: /d' \
-e '/^proc\.namespaces.*: /d' \
-e '/^papi\..*: No permission/d' \
-e '/^postgresql\..*: Missing metric value(s)/d' \
-e '/^logger\.perfile\.reg\.records: No permission/d' \
-e '/^logger\.perfile\.fifo\.records: Try again./d' \
-e '/^logger\.perfile\.reg\.records: Try again./d' \
-e '/^containers\..*: pmLookupDesc: Unknown or illegal metric/d' \
-e '/^elasticsearch\..*: Try again./d' \
-e '/^apache\..*: Try again./d' \
-e '/^nginx\..*: Try again./d' \
-e '/^zswap\..*: Try again./d' \
-e '/Container not found/d' \
#endif
}
# real QA test starts here
echo "First attempt ... expect nothing"
pminfo -v | _filter
echo "Second attempt ... expect nothing"
pminfo -v | _filter
echo "Once more, but with --container ... expect nothing"
containers=`pmprobe -v pmcd.feature.containers 2>/dev/null | awk '{ print $3 }'`
if [ "$containers" = "1" ]; then
pminfo -v --container=no.such.container | _filter
fi
# success, all done
exit
|