blog:vcenter_vm_monitoring_with_graphite

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
blog:vcenter_vm_monitoring_with_graphite [2014/10/01 02:51] brettblog:vcenter_vm_monitoring_with_graphite [2014/10/01 04:12] (current) brett
Line 3: Line 3:
 This was done on a CentOS 6.3 server your mileage may vary on another platform. This was done on a CentOS 6.3 server your mileage may vary on another platform.
  
-{{:blog:graphite-vc-tree.png?nolink|}}+The problem I was trying to solve was that I wanted to monitor the vitals of all my VM's without having to install collectd into each VM, by talking to vCenter we can pull everything out that we need.  This work was inspired by [[https://github.com/llambiel/collectd-vcenter|collectd-vcenter]] which I could not get to work as its assumes you have an ESX Cluster.  So I wrote my own.
  
-You will need to have a version of collectd compiled that has the python plugin enabled.  This can be down by downloading the collectd source and building it, making sure to have python-devel package installed.+See details on setting up [[livebox/graphite]] which I used for my xAP monitoring  
 + 
 +{{:blog:graphite-vc-tree.png?nolink|}}
  
 We don't use the collectd RPM from the EPEL repository as its too old and does not have the graphite_write plugin. We don't use the collectd RPM from the EPEL repository as its too old and does not have the graphite_write plugin.
 +
 +You will need to have a version of collectd compiled that has the python plugin enabled.  This can be down by downloading the collectd source and building it, making sure to have python-devel package installed.
  
 Mathew has a good write on the graphite / collectd compilation and configuration for graphite.  http://blog.matthewdfuller.com/2014/06/sending-collectd-metrics-to-graphite.html Mathew has a good write on the graphite / collectd compilation and configuration for graphite.  http://blog.matthewdfuller.com/2014/06/sending-collectd-metrics-to-graphite.html
Line 42: Line 46:
 easy_install -U pysphere easy_install -U pysphere
 </code> </code>
-This works fine in my lab where I have a single vCenter instance.+The magic script that pulls all the stats we need.  This works in my ESX 5.1 lab where I have a single vCenter instance.
  
 vcenter.py vcenter.py
Line 55: Line 59:
  
 # Metric and reporting type as a value # Metric and reporting type as a value
 +# https://collectd.org/wiki/index.php/Data_source
 +# /opt/collectd/share/collectd/types.db
 +# https://www.vmware.com/support/developer/vc-sdk/visdk41pubs/ApiReference/vim.vm.Summary.QuickStats.html
 METRIC={"name":None, METRIC={"name":None,
         "runtime.powerState":None,         "runtime.powerState":None,
-        "summary.quickStats.overallCpuUsage":"gauge",+        "summary.quickStats.overallCpuUsage":"cpufreq",  # Mhz
         "summary.quickStats.uptimeSeconds":"gauge",         "summary.quickStats.uptimeSeconds":"gauge",
         "summary.quickStats.guestMemoryUsage":"bytes",         "summary.quickStats.guestMemoryUsage":"bytes",
         "summary.quickStats.hostMemoryUsage":"bytes",         "summary.quickStats.hostMemoryUsage":"bytes",
-        "summary.quickStats.overallCpuUsage":"gauge", 
         "config.hardware.memoryMB":"bytes"}         "config.hardware.memoryMB":"bytes"}
  
Line 166: Line 172:
 </code> </code>
  
-{{tag>graphite,python,esx}}+{{tag>graphite python esx}}
  
 ~~LINKBACK~~ ~~LINKBACK~~
  
  
  • blog/vcenter_vm_monitoring_with_graphite.1412131865.txt.gz
  • Last modified: 2014/10/01 02:51
  • by brett