File: 427

package info (click to toggle)
pcp 4.3.2%2Breally4.3.1-0.1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 175,188 kB
  • sloc: ansic: 261,305; sh: 123,606; xml: 107,279; cpp: 72,127; perl: 18,283; python: 15,453; yacc: 8,249; lex: 2,585; makefile: 1,957; fortran: 60; java: 52
file content (125 lines) | stat: -rwxr-xr-x 2,880 bytes parent folder | download | duplicates (2)
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
121
122
123
124
125
#! /bin/sh
# PCP QA Test No. 427
# bogus pmda entries in pmcd.conf
# #564017
#
# 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

if [ -z "$PCP_PMCDCONF_PATH" ] ; then 
	echo eek; exit 1;
fi

if [ -z "$PCP_PMCDLOG_PATH" ] ; then 
	echo yuk; exit 1;
fi
status=1	# failure is the default!
needclean=true

[ -z "$PCP_PMLOGGERCONTROL_PATH" ] && \
	PCP_PMLOGGERCONTROL_PATH="$PCP_SYSCONF_DIR/pmlogger/control"
PCP_PMDAROOT_LOG="$PCP_LOG_DIR/pmcd/root.log"

$sudo rm -f $tmp.* $seq.full
trap "_cleanup" 0 1 2 3 15

_cleanup()
{
    if $needclean
    then
	_restore_config $PCP_PMCDCONF_PATH
	_restore_config $PCP_PMLOGGERCONTROL_PATH
	needclean=false
	_service pcp restart 2>&1 | _filter_pcp_start
	_wait_for_pmcd
	_wait_for_pmlogger

	# make sure bogus has gone away
	echo
	echo "Anything below here may indicate that bogus has not gone away:"
	grep bogus $PCP_PMCDCONF_PATH
	pminfo -f pmcd.agent | grep bogus
    fi
    $sudo rm -f $tmp.*
    exit $status
}

_filter()
{
    grep bogus | \
    sed \
	-e 's/^pmdaroot:/PMCD:/g' \
	-e 's/^pmcd:/PMCD:/g' \
	-e "s#$tmp\.##" \
    #end
}

# real QA test starts here

# disable all pmloggers ...
_save_config $PCP_PMLOGGERCONTROL_PATH
cat <<End-of-File >$tmp.tmp
# Installed by PCP QA test $seq on `date`
# the goal here is to have a controlled primary logger that does
# not make requests to pmcd!
\$version=1.1
LOCALHOSTNAME y n $PCP_LOG_DIR/pmlogger/LOCALHOSTNAME -c /dev/null
End-of-File
$sudo cp $tmp.tmp $PCP_PMLOGGERCONTROL_PATH

# backup $PCP_PMCDCONF_PATH
_save_config $PCP_PMCDCONF_PATH

# add bogus entry
$PCP_AWK_PROG < $PCP_PMCDCONF_PATH > $tmp.pmcd.new -v seq="$seq" -v path="$tmp.bogus.pmda" '
function printline()
{
    printf("# Added by QA test %s\n", seq);
    printf("bogus	169	pipe	binary	%s\n", path);
}

BEGIN			{ flag = 0 }
$1 == "[access]"	{ printline(); print; flag = 1; next }
			{ print }
END			{ if (flag == 0) printline(); }'

# copy the new config
$sudo cp $tmp.pmcd.new $PCP_PMCDCONF_PATH

# restart pmcd
_service pcp restart 2>&1 | _filter_pcp_start
_wait_for_pmcd

echo == $PCP_PMCDCONF_PATH >> $seq.full
cat $PCP_PMCDCONF_PATH >> $seq.full
echo == $PCP_PMDAROOT_LOG >> $seq.full
cat $PCP_PMDAROOT_LOG >> $seq.full
echo == $PCP_PMCDLOG_PATH >> $seq.full
cat $PCP_PMCDLOG_PATH >> $seq.full

# check that pmcd reported the agent as an error
echo
echo "errors for bogus in pmcd related log file(s):"
[ -f $PCP_PMDAROOT_LOG ] && \
egrep "^pmdaroot:" $PCP_PMDAROOT_LOG | _filter
egrep "^pmcd:" $PCP_PMCDLOG_PATH | _filter

# check that the pmcd.agent.status metric is correct
echo
echo "pmcd agent metrics for bogus:"
pminfo -f pmcd.agent.type | egrep '^pmcd|bogus'
pminfo -f pmcd.agent.status | egrep '^pmcd|bogus'
echo

# success, all done
status=0
exit