91167665f5
None of these services connects to RabbitMQ, so we need to verify functionality of those services different way. Change-Id: Ic6b51ad6be0d230375bdfb13e04f82629336d070 Closes-Bug: #1724922
15 lines
330 B
Bash
Executable File
15 lines
330 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. ${HEALTHCHECK_SCRIPTS:-/usr/share/openstack-tripleo-common/healthcheck}/common.sh
|
|
|
|
process='ceilometer-polling'
|
|
args="${@:-6379}"
|
|
|
|
if healthcheck_port $process $args; then
|
|
exit 0
|
|
else
|
|
ports=${args// /,}
|
|
echo "There is no $process process with opened Redis ports ($ports) running in the container"
|
|
exit 1
|
|
fi
|