Included in 2013.2.3
OtherQA Process =============== 0. Install packstack --allinone in the usual way 1. Artificially accelerate the cadence of polling for an individual meter by adding the following entry to /etc/ceilometer/pipeline.yaml: name: image_pipeline interval: 10 meters: - "image.size" transformers: publishers: - rpc:// 2. Restart the agent responsible for collecting that accelerated meter: $ sudo service openstack-ceilometer-central restart 3. Note the 10 second cadence of samples for that meter: $ ceilometer sample-list -m image.size | awk '/image.size/ {print $(NF-1)}' 4. Stop the qpidd broker: $ sudo service qpidd stop 5. Note that the flow of samples dries up: $ while true; do ceilometer sample-list -m image.size | awk '/image.size/ {print $(NF-1)}' | head -1 ; echo '---' ; sleep 1 ; done 6. Restart the qpidd broker: $ sudo service qpidd stop 7. The flow of sample should resume within 5s: $ while true; do ceilometer sample-list -m image.size | awk '/image.size/ {print $(NF-1)}' | head -1 ; echo '---' ; sleep 1 ; done Marking as verified due to the expected rapid resumption of message flow being observed.
Correction to OtherQA steps above, step #6 should read: 6. Restart the qpidd broker: $ sudo service qpidd start
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. http://rhn.redhat.com/errata/RHBA-2014-0577.html