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
|
#!/bin/sh
# PCP QA Test No. 1603
# Exercise key server cluster mode support in libpcp_web with pmseries.
#
# Copyright (c) 2021 Red Hat.
#
seq=`basename $0`
echo "QA output created by $seq"
# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check
. ./common.keys
_check_series
_check_key_server_version_offline
_cleanup()
{
cd $here
[ -n "$pmproxy_pid" ] && $signal -s TERM $pmproxy_pid
_key_server_cluster_3nodes_stop
if $need_restore
then
need_restore=false
_restore_config $PCP_SYSCONF_DIR/pmproxy
fi
$sudo rm -rf $tmp $tmp.*
}
status=1 # failure is the default!
signal=$PCP_BINADM_DIR/pmsignal
username=`id -u -n`
need_restore=false
trap "_cleanup; exit \$status" 0 1 2 3 15
_filter_source()
{
sed \
-e "s,$here,PATH,g" \
#end
}
# real QA test starts here
_save_config $PCP_SYSCONF_DIR/pmproxy
$sudo rm -f $PCP_SYSCONF_DIR/pmproxy/*
need_restore=true
_key_server_cluster_3nodes_start
cat >$tmp.conf <<EOF
[pmproxy]
pcp.enabled = true
resp.enabled = true
[pmseries]
servers = localhost:$key_server_node2_port,localhost:$key_server_node1_port
[pmsearch]
enabled = false
EOF
pmseriesopts="-c $tmp.conf"
echo
echo "== Verify basic load from proc archive"
pmseries $pmseriesopts --load "{source.path: \"$here/archives/proc\"}" | _filter_source
echo
echo "== Check number of keys on each node"
# context hash will be different depending where the archive is stored on the QA host
$keys_cli -p $key_server_node1_port keys '*' | grep -v context.name | wc -l
$keys_cli -p $key_server_node2_port keys '*' | grep -v context.name | wc -l
$keys_cli -p $key_server_node3_port keys '*' | grep -v context.name | wc -l
echo
echo "== List all metric names ..."
pmseries $pmseriesopts -m | LC_COLLATE=POSIX sort
echo
echo "== Values fetch for a multi-valued query ..."
pmseries $pmseriesopts -Z UTC 'kernel.all.load[count: 30]'
status=0
exit
|