Merge "Specify the RefreshInterval for the libvirt collectd plugin"

This commit is contained in:
Jenkins
2016-06-09 17:44:05 +00:00
committed by Gerrit Code Review

View File

@@ -27,12 +27,14 @@
#
class lma_collector::collectd::libvirt (
$connection = $lma_collector::params::libvirt_connection,
$refresh_interval = 60,
) inherits lma_collector::params {
validate_string($connection)
class { 'collectd::plugin::libvirt':
connection => $connection,
hostname_format => 'uuid',
connection => $connection,
hostname_format => 'uuid',
refresh_interval => $refresh_interval,
}
}