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
|
#!/bin/sh
# PCP QA Test No. 1604
# Exercise pmproxy REST API /series/values endpoint using curl(1).
#
# Copyright (c) 2022 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
which jq >/dev/null 2>&1 || _notrun "jq not installed"
_cleanup()
{
cd $here
[ -n "$pmproxy_pid" ] && $signal -s TERM $pmproxy_pid
[ -n "$options" ] && $keys_cli $options shutdown
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
userid=`id -u`
username=`id -u -n`
hostname=`hostname`
machineid=`_machine_id`
domainname=`_domain_name`
need_restore=false
trap "_cleanup; exit \$status" 0 1 2 3 15
_filter_source()
{
sed \
-e "s,$here,PATH,g" \
-e "s,$hostname,QAHOST,g" \
#end
}
_format_timestamps()
{
jq '.[].timestamp |= ((. / 1000 | strftime("%Y-%m-%d %H:%M:%S")) + "." + (. * 1000 % 1000000 | tostring))'
}
# real QA test starts here
_save_config $PCP_SYSCONF_DIR/pmproxy
$sudo rm -f $PCP_SYSCONF_DIR/pmproxy/*
need_restore=true
echo "Start test key server ..."
key_server_port=`_find_free_port`
options="-p $key_server_port"
$key_server --port $key_server_port --save "" > $tmp.keys 2>&1 &
_check_key_server_ping $key_server_port
_check_key_server $key_server_port
echo
_check_key_server_version $key_server_port
# import some well-known test data into the key server
pmseries $options --load "$here/archives/bozo-disk" | _filter_source
# start pmproxy
proxyport=`_find_free_port`
proxyopts="-p $proxyport -r $key_server_port -t" # -Dseries,http,af
pmproxy -f -U $username -x $seq_full -l $tmp.pmproxy.log $proxyopts &
pmproxy_pid=$!
# check pmproxy has started and is available for requests
pmcd_wait -h localhost@localhost:$proxyport -v -t 5sec
series1=`pmseries $options disk.all.read`
[ -z "$series1" ] && _fail "Cannot find any timeseries matching disk.all.read"
echo "Using series $series1 for disk.all.read"
echo "== no interval" | tee -a $seq_full
url="http://localhost:$proxyport/series/values?series=$series1&start=1489620673&finish=1489620793"
echo "$url" >> $seq_full
curl --get --silent "$url" | tee -a $seq_full | _format_timestamps
echo "== 10s interval" | tee -a $seq_full
url="http://localhost:$proxyport/series/values?series=$series1&start=1489620673&finish=1489620793&interval=10"
echo "$url" >> $seq_full
curl --get --silent "$url" | tee -a $seq_full | _format_timestamps
echo "== 20s interval" | tee -a $seq_full
url="http://localhost:$proxyport/series/values?series=$series1&start=1489620673&finish=1489620793&interval=20"
echo "$url" >> $seq_full
curl --get --silent "$url" | tee -a $seq_full | _format_timestamps
cat $tmp.pmproxy.log >> $seq_full
echo "== 20s interval, starting 2m before first sample in archive" | tee -a $seq_full
url="http://localhost:$proxyport/series/values?series=$series1&start=1489620553&finish=1489620793&interval=20"
echo "$url" >> $seq_full
curl --get --silent "$url" | tee -a $seq_full | _format_timestamps
cat $tmp.pmproxy.log >> $seq_full
status=0
exit
|