adding libvirt plugin to nova-compute recipe

This commit is contained in:
galstrom21 2012-06-08 11:01:32 -05:00
parent c41a93ba08
commit c6c4cec624
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,41 @@
#
# Cookbook Name:: nova
# Recipe:: compute-monitoring
#
# Copyright 2009, Rackspace Hosting, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
########################################
# BEGIN COLLECTD SECTION
# TODO(shep): This needs to be encased in an if block for the collectd_enabled environment toggle
include_recipe "collectd-graphite::collectd-client"
ks_service_endpoint = get_access_endpoint("keystone", "keystone","service-api")
nova = get_settings_by_role("single-compute", "nova")
if nova["libvirt"]["virt_type"] == "qemu"
virt_conn = "qemu:///system"
else
virt_conn = "kvm:///"
end
collectd_plugin "libvirt" do
options(
"Connection"=>virt_conn,
"HostnameFormat"=>"name",
"RefreshInterval"=>60
)
end
########################################

View File

@ -47,3 +47,7 @@ service "nova-compute" do
end
include_recipe "nova::libvirt"
# TODO(shep): this needs to be if blocked on env collectd toggle
# Include recipe(nova::compute-monitoring)
include_recipe "nova::compute-monitoring"