File: 1190

package info (click to toggle)
pcp 7.1.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 252,748 kB
  • sloc: ansic: 1,483,656; sh: 182,366; xml: 160,462; cpp: 83,813; python: 24,980; perl: 18,327; yacc: 6,877; lex: 2,864; makefile: 2,738; awk: 165; fortran: 60; java: 52
file content (319 lines) | stat: -rwxr-xr-x 8,156 bytes parent folder | download
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
#!/bin/sh
# PCP QA Test No. 1190
# Paranoid PCP setup checkout ... really a guard before running QA,
# but this accumulates the knowledge for QA catostrophic failures
# that follow Murhy's Law #2: Law #1 was optimistic
#
# Copyright (c) 2020 Ken McDonell.  All Rights Reserved.
#

seq=`basename $0`

check=false
if [ $# -ge 1 -a "$1" = "--check" ]
then
    check=true
    # if 2nd arg present then use this as $seq ... we're being called from
    # check.callback more than likely
    #
    [ $# -ge 2 -a "$2" != "" ] && seq="$2"
    [ -f $seq.full ] && mv $seq.full $seq.full.save
fi

$check || echo "QA output created by $seq"

# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check

[ -f $seq_full.save ] && mv $seq_full.save $seq_full

_cleanup()
{
    cd $here
    $sudo rm -rf $tmp $tmp.*
}

status=0	# success is the default!
trap "_cleanup; exit \$status" 0 1 2 3 15

# Usage: _check_file <realpath> <unexpanded_path_or_prefix>
# e.g. _check_file "$PCP_TMP_DIR/mmv" '$PCP_TMP_DIR/'
#
_check_file()
{
    # don't expect "QA" or "qa" from lines like
    # Installed by PCP QA test $seq on `date`
    #
    # First, make sure we can read the file ...
    #
    if [ -r "$1" ]
    then
	grep -i QA "$1" >$tmp.out 2>>$seq_full
    else
	$sudo grep -i QA "$1" >$tmp.out 2>>$seq_full
    fi
    # some of these are indeed expected and OK, so handle the exceptions
    # here ...
    #
    case "$1"
    in
	/etc/hosts)
	    sed <$tmp.out >$tmp.tmp \
		-e '/bogus entries for PCP QA, added by qa.src.fixhosts/d' \
		-e '/pcpqa-.*\.sgi\.com/d' \
		-e '/[a-z]*[0-9]*-qa\.gateway/d' \
		-e '/cloudapp\.net/d' \
	    # end
	    mv $tmp.tmp $tmp.out
	    ;;
	"$PCP_PMCDOPTIONS_PATH")
	    # Need to accommodate old-style and new-style here
	    #
	    sed <$tmp.out >$tmp.tmp \
		-e '/^# added by PCP QA/d' \
		-e '/^# Installed by PCP QA common on /d' \
	    # end
	    mv $tmp.tmp $tmp.out
	    ;;
	"$HOME"/.pki/nssdb/*.db)
	    # nothing to see inside these database files
	    #
	    rm -f $tmp.out
	    ;;
	"$PCP_TMP_DIR"/pmproxy/*)
	    # most of these are PCP mmap'd files, in which case a match
	    # for QA from the grep above is a fluke
	    #
	    case `file "$1" | sed -e 's/  */ /g'`
	    in
		*": PCP memory mapped values"*)
		    rm -f $tmp.out
		    ;;
		*": data")	# file(1) does not grok the PCP types?
		    rm -f $tmp.out
		    ;;
	    esac
	    ;;
	"$PCP_SYSCONFIG_DIR"/pmlogger|"$PCP_SYSCONFIG_DIR"/pmlogger_farm)
	    sed <$tmp.out >$tmp.tmp \
		-e '/^# and maybe useful for QA or special testing/d' \
	    # end
	    mv $tmp.tmp $tmp.out
	    ;;
    esac
    if [ -s $tmp.out ]
    then
	if $check
	then
	    echo "$1 ... BAD (QA text found)"
	else
	    prefix=`eval echo "$2"`
	    orig=`echo "$1" | sed -e "s@^$prefix@$2@"`
	    echo "$orig ... BAD (QA text found)"
	fi
	cat $tmp.out | sed -e 's/^/  /'
	status=1
    else
	if $check
	then
	    :
	else
	    prefix=`eval echo "$2"`
	    orig=`echo "$1" | sed -e "s@^$prefix@$2@"`
	    echo "$orig ... OK"
	fi
    fi
    # expect no $1.<seq> files (these are salted away by
    # _save_config() in QA tests)
    #
    rm -f $tmp.out
    for file in "$1".[0-9]*
    do
	case "$file"
	in
	    "$1".'[0-9]*')
		continue
		;;
	    *)
		echo "$file" >>$tmp.out
		;;
	esac
    done
    if [ -s $tmp.out ]
    then
	echo "$1.<seq> ... BAD"
	cat $tmp.out | fmt | sed -e 's/^/  /'
    fi
}

# real QA test starts here

_get_pids_by_name pmcd >$tmp.pids
n=`cat $tmp.pids | wc -l | sed -e 's/ //g'`
if [ "$n" -eq 1 ]
then
    $check || echo "Count of pmcd's ... OK"
else
    echo "Count of pmcd's ... BAD ($n not 1)"
    echo "From _get_pids_by_name"
    sed -e 's/^/ /' <$tmp.pids
    $PCP_PS_PROG $PCP_PS_ALL_FLAGS | grep -E '[P]PID|/[p]mcd( |$)' \
    | sed -e 's/^/  /'
    _systemctl_status pmcd
    status=1
fi

$PCP_PS_PROG $PCP_PS_ALL_FLAGS | grep -E '[P]PID|/[p]mlogger .*-P ' >$tmp.out
n=`grep -v PID <$tmp.out | wc -l | sed -e 's/ //g'`
if [ "$n" -eq 0 ]
then
    # if systemctl is in the frame, check for Activating ... we may
    # be checking a bit too soon and consider Activating the same as
    # Active for the current purposes
    #
    _systemctl_status pmlogger >$tmp.activating
    if grep "Active: activating" $tmp.activating >/dev/null
    then
	n=1
    fi
fi
if [ "$n" -eq 1 ]
then
    $check || echo "Count of primary pmlogger's ... OK"
else
    echo "Count of primary pmlogger's ... BAD ($n not 1)"
    cat $tmp.out | sed -e 's/^/  /'
    _systemctl_status pmlogger
    status=1
fi

# "Failed" PMDAs are ones where agent.status is neither 0 (OK)
# nor 1 (not ready)
#
pminfo -f pmcd.agent.status | sed -e '/^ *$/d' >$tmp.out
n=`grep '^ *inst .* value ' <$tmp.out | grep -v 'value [01]$' | wc -l | sed -e 's/ //g'`
if [ "$n" -eq 0 ]
then
    $check || echo "Failed PMDAs ... OK"
else
    echo "Failed PMDAs ... ($n not 0)"
    cat $tmp.out | sed -e 's/^/  /'
    status=1
fi

pminfo \
| sed -e 's/\./ /' \
| sort \
| $PCP_AWK_PROG '
$1 != last	{ print $1 "." $2; last = $1 }' >$tmp.1perdomain
pminfo -v -b1 `cat $tmp.1perdomain` \
| grep 'No PMCD agent for domain' >$tmp.out
n=`wc -l <$tmp.out | sed -e 's/ //g'`
if [ "$n" -eq 0 ]
then
    $check || echo "PMNS names w/out a PMDA ... OK"
else
    echo "PMNS names w/out a PMDA ... BAD ($n not 0)"
    cat $tmp.out | sed -e 's/^/  /'
    status=1
fi

# sample PMDA has some test metrics that produce a warning
# pmproxy PMDA has some dynamic metrics that may not have been
# enumerated in the PMDA's PMNS if it has just restarted
#
pminfo -v -b 2000 | grep 'illegal metric identifier' \
| grep -v 'sample.*\.bad\.unknown' \
| grep -v 'pmproxy\.' >$tmp.out
n=`wc -l <$tmp.out | sed -e 's/ //g'`
if [ "$n" -eq 0 ]
then
    $check || echo "Bad PMIDs in PMDA (other than sample or pmproxy) ... OK"
else
    echo "Bad PMIDs in PMDA (other than sample or pmproxy) ... BAD ($n not 0)"
    cat $tmp.out | sed -e 's/^/  /'
    status=1
fi

# The list below initially comes from grepping for _save_config across
# all the QA infrastructure scripts and QA tests.
#
# It is expected to be added to over time as new whacko failure modes
# are diagnosed.
#
for arg in \
    /etc/hosts \
    /etc/zabbix/zbxpcp-derived-metrics.conf \
    '$HOME'/.pki/nssdb \
    '$PCP_ETC_DIR/pcp/labels' \
    '$PCP_ETC_DIR/pcp/pmlogger' \
    '$PCP_PMCDCONF_PATH' \
    '$PCP_PMCDCONF_PATH.access' \
    '$PCP_PMCDOPTIONS_PATH' \
    '$PCP_PMDAS_DIR/bind2/bind2.conf' \
    '$PCP_PMDAS_DIR/json/config.json' \
    '$PCP_PMDAS_DIR/nutcracker/nutcracker.conf' \
    '$PCP_PMDAS_DIR/openmetrics/config.d' \
    '$PCP_PMDAS_DIR/pipe/pipe.conf' \
    '$PCP_PMDAS_DIR/postgresql/pmdapostgresql.conf' \
    '$PCP_PMDAS_DIR/redis/redis.conf' \
    '$PCP_PMDAS_DIR/sample/dynamic.indom' \
    '$PCP_PMDAS_DIR/simple/simple.conf' \
    '$PCP_PMIECONTROL_PATH' \
    '$PCP_PMLOGGERCONTROL_PATH' \
    '$PCP_PMLOGGERCONTROL_PATH.d' \
    '$PCP_PMPROXYOPTIONS_PATH' \
    '$PCP_SASLCONF_DIR/pmcd.conf' \
    '$PCP_SYSCONF_DIR/labels' \
    '$PCP_SYSCONF_DIR/pipe.conf.d' \
    '$PCP_SYSCONF_DIR/pmproxy' \
    '$PCP_SYSCONF_DIR/pmseries' \
    '$PCP_SYSCONFIG_DIR/pmcd' \
    '$PCP_SYSCONFIG_DIR/pmlogger' \
    '$PCP_SYSCONFIG_DIR/pmlogger_farm' \
    '$PCP_SYSCONFIG_DIR/pmproxy' \
    '$PCP_SYSTEMDUNIT_DIR/pm'*'.service' \
    '$PCP_SYSTEMDUNIT_DIR/pm'*'.timer' \
    '$PCP_TMP_DIR/bash' \
    '$PCP_TMP_DIR/mmv' \
    '$PCP_TMP_DIR/pmproxy' \
    '$PCP_VAR_DIR/config/cisco/cisco.conf' \
    '$PCP_VAR_DIR/config/logger/logger.conf' \
    '$PCP_VAR_DIR/config/pmlogger/config.default' \
    '$PCP_VAR_DIR/pmns/root' \
    '$PCP_PMDAS_DIR/linux/bandwidth.conf' \

do
    conf=`eval echo "$arg"`
    if [ -f "$conf" ]
    then
	_check_file "$conf" "$arg"
    elif [ -d "$conf" ]
    then
	rm -f $tmp.tmp
	find "$conf" -type f \
	| while read file
	do
	    _check_file "$file" "$arg" >>$tmp.tmp
	done
	if [ -s $tmp.tmp ] && grep BAD $tmp.tmp
	then
	    # at least one BAD file below this dir, already reported from grep
	    #
	    :
	else
	    $check || echo "$arg ... OK"
	fi
    elif [ -z "$conf" ]
    then
	echo "empty var!"
    else
	$check || echo "$arg ... OK"
    fi
done

# success, all done
status=0
exit