Jump to: navigation, search

Difference between revisions of "Ceilometer/blueprints/graphite-publisher"

(working ceilometer graphite publisher)
Line 8: Line 8:
 
== '''Solution''' ==
 
== '''Solution''' ==
 
To create a new graphite publisher, so that ceilometer-compute agent can directly send the metrics to graphite.  
 
To create a new graphite publisher, so that ceilometer-compute agent can directly send the metrics to graphite.  
 +
 +
In publisher.yaml:
 +
    '''publishers:
 +
        - graphite://127.0.0.1:2003'''
  
 
Working Sample.
 
Working Sample.
 
The metrics are send to graphite as:  
 
The metrics are send to graphite as:  
==== ceilometer.project_id.resource_id.metric ====
+
<big>ceilometer.project_id.resource_id.metric</big>
 +
 
 +
 
  
 
[[File:Ceilometer graphite publisher.png|framed|Ceilometer Graphite Publisher]]
 
[[File:Ceilometer graphite publisher.png|framed|Ceilometer Graphite Publisher]]

Revision as of 11:26, 1 April 2014

Context

We want to monitor resource usage for all the VMS group by tenants. We do not want to write our own plugin for monitoring, but use ceilometer. So instead of installing the full ceilometer components, we can install just the ceilometer-compute agent on each hypervisor, and then use the pipeline.yaml file to send the collected stats directly to graphite.

Problem

Performance issues on saving records to sql and on query.

Solution

To create a new graphite publisher, so that ceilometer-compute agent can directly send the metrics to graphite.

In publisher.yaml:

   publishers:
       - graphite://127.0.0.1:2003

Working Sample. The metrics are send to graphite as: ceilometer.project_id.resource_id.metric


Ceilometer Graphite Publisher