0e64162d02
The agent communicates via Redis (not RabbitMQ), so it should look for that port instead Change-Id: I780ec27c206c508cf68d0ce16ef269b5d1b92581
15 lines
338 B
Bash
Executable File
15 lines
338 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
|