Ceilometer Metrics to Graphite [work in progress for a version of this that works in Pike and beyond]
Append this to your ceilometer.conf
[graphite]
prefix = ceilometer.
append_hostname = true
locate your entrypoints.txt file for ceilometer and add this under the ceilometer.publishers group ( Centos: /usr/lib/python2.6/site-packages/ceilometer-2013.2.3-py2.6.egg-info/entrypoints.txt )
[ceilometer.publisher]
graphite = ceilometer.publisher.graphite:GraphitePublisher
Edit your pipeline.yaml and set the publisher to look like:
publishers:
- graphite://192.168.0.1:2003
Place the graphite.py inside publisher folder (Centos: /usr/lib/python2.6/site-packages/ceilometer/publisher/ )
Restart openstack-ceilometer-compute
Code Review: https://review.openstack.org/#/c/103479/2