https://github.com/openstack/rally
Raw File
Tip revision: b6a203d9ab646612e349906ed2016c538c5b3f89 authored by Doug Hellmann on 19 April 2016, 19:18:34 UTC
fix up the formatting of the readme for the announce script
Tip revision: b6a203d
check_queue_perfdata.rst
===========================
Check queue perfdata
===========================


Use case
————
Sometimes OpenStack services use common messaging system very prodigally. For example neutron metering agent sending all database table data on new object creation i.e https://review.openstack.org/#/c/143672/. It cause to neutron degradation and other obvious problems.
It will be nice to have a way to track messages count and messages size in queue during tests/benchmarks.


Problem description
—————————
Heavy usage of queue isn’t checked.


Possible solution
————————
* Before running tests/benchmarks start process which will connect to queue topics and measure messages count, size and other data which we need.
back to top