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
|
#!/bin/sh
# PCP QA Test No. 1997
# Exercise various pcp-nfsiostat(1) command options.
#
# Copyright (c) 2023 Oracle and/or its affiliates.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
seq=`basename $0`
echo "QA output created by $seq"
. ./common.python
status=1 # failure is the default!
trap "cd $here; rm -rf $tmp.*; exit \$status" 0 1 2 3 15
pcp_nfsiostat="$PCP_BINADM_DIR/pcp-nfsiostat"
test -x $pcp_nfsiostat || _notrun "No pcp-nfsiostat(1) installed"
pcp_nfsiostat="$python $pcp_nfsiostat"
# real QA test starts here
echo && echo pcp-nfsiostat output : Display default output
PCP_ARCHIVE="archives/pcp-nfsiostat" PCP_HOSTZONE=1 $pcp_nfsiostat
archive_first="-a archives/pcp-nfsiostat -z -O +1"
echo && echo pcp-nfsiostat output : Display output
pcp $archive_first nfsiostat
echo && echo pcp-nfsiostat output : Display output when given specified number of samples
pcp $archive_first nfsiostat -s 3
echo && echo pcp-nfsiostat output : Display output when given specified number of sample with specified sampling interval
pcp $archive_first nfsiostat -t 5 -s 4
status=0
exit
|