Hi, ceilometer stackers<br><br>I notice that there are two files (ceilometer-rpc-zmq-receiver, ceilometer-send-counter) in ceilometer/bin directory, when and where we should use them, and why we put them there ? The reason I ask this question is that I want to add mysql support in devstack for ceilometer, but when I executed $CEILOMETER_BIN_DIR/ceilometer-dbsync command, it reported "No such File". It is because the following code cause the problem, which results CEILOMETER_BIN_DIR get the wrong directory:<br>
<br># Support potential entry-points console scripts<br>if [[ -d $CEILOMETER_DIR/bin ]]; then<br>    CEILOMETER_BIN_DIR=$CEILOMETER_DIR/bin<br>else<br>    CEILOMETER_BIN_DIR=$(get_python_exec_prefix)<br>fi<br><br>so, can we move the files to somewhere else, and remove the bin/ directory just like nova does?<br>
<br>The ceilometer-mysql-support path is <a href="https://review.openstack.org/#/c/37413/">https://review.openstack.org/#/c/37413/</a><br><br><br>Thanks !<br>