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
|
#!/bin/sh
# PCP QA Test No. 1396
# Exercise the pcp-pidstat command for process state reporting. (exercise the -B flag)
#
# Copyright (c) 2017 Red Hat. All Rights Reserved.
#
seq=`basename $0`
echo "QA output created by $seq"
. ./common.python
status=1 # failure is the default!
trap "rm -rf $tmp $tmp.*; exit \$status" 0 1 2 3 15
test -x $PCP_BINADM_DIR/pcp-pidstat || _notrun "No pcp-pidstat(1) installed"
pcp_pidstat="pcp -z pidstat"
archive1="-a $here/archives/pcp-pidstat-process-states"
# real QA test starts here
echo && echo pcp-pidstat output: report total time of current states of all running and zombie postgres processes
$pcp_pidstat $archive1 pidstat -B R,Z -G postgres
echo && echo pcp-pidstat output: report all processes in D state
$pcp_pidstat $archive1 pidstat -B D
echo && echo pcp-pidstat output: report details about all postgres processes
$pcp_pidstat $archive1 pidstat -B detail -G postgres
echo && echo pcp-pidstat output: report first twenty samples of all processes
$pcp_pidstat $archive1 pidstat -B all -s 20
# success, all done
status=0
exit
|