blob: 8ae9f385e7b1d8ccf256df2985bb6c7d4efb550b [file] [log] [blame]
#!/bin/bash
if [[ -z ${token+x} ]]; then
export token=$(openstack token issue -c id -f value)
echo "# Exported token: ${token}"
fi
if [[ -z ${project_id+x} ]]; then
export project_id=$(openstack project list -c ID -c Name -f value | grep ${OS_PROJECT_NAME} | cut -d' ' -f1)
echo "# Exported project_id: ${project_id}"
fi
#poke_uri=$(echo ${1/project_id/$project_id})
function ppoke {
rr=$(curl -sSH "X-Auth-Token: ${token}" $1 2>&1)
if [[ $? != 0 ]]; then
printf "[$(date +'%H:%M:%S')] -> $1\nError: $rr\n\n"
else
printf "[$(date +'%H:%M:%S')] -> '$1', $(echo $rr | wc -c) bytes\n"
fi
}
cc=${2};
while [[ $cc -gt 0 ]]; do
cat $1 | while read svc; do
ppoke $svc;
done
(( cc -= 1 ));
echo "$cc to go";
sleep 0.1;
done