Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 803 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 803 Bytes

ceilograph

Ceilometer Metrics to Graphite

  1. Append this to your ceilometer.conf
[graphite]
prefix = ceilometer.
append_hostname = true
  1. locate your entry_points.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/entry_points.txt )
[ceilometer.publisher]
graphite = ceilometer.publisher.graphite:GraphitePublisher
  1. Edit your pipeline.yaml and set the publisher to look like:
    publishers:
            - graphite://192.168.0.1:2003
  1. Place the graphite.py inside publisher folder (Centos: /usr/lib/python2.6/site-packages/ceilometer/publisher/ )

  2. Restart openstack-ceilometer-compute

Code Review: https://review.openstack.org/#/c/103479/2