e2e602972f
The SQLAlchemy-collectd plugin is now shipped in podman containers under Kolla, this allows heat templates to pull the plugin into the collectd configuration when the collectd templates are being used. A corresponding set of template changes in tripleo-heat-templates will enable this plugin. Change-Id: If598da717653a383a2d3b3373c56517f8bca832f
54 lines
1.5 KiB
Puppet
54 lines
1.5 KiB
Puppet
# Copyright 2019 Red Hat, 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.
|
|
#
|
|
# == Define: tripleo::profile::base::metrics::collectd::sqlalchemy_collectd
|
|
#
|
|
# This is used to create configuration file for sqlalchemy-collectd plugin
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*bind_host*]
|
|
# (Optional) String. Hostname to listen on. Defaults to 0.0.0.0
|
|
#
|
|
# [*bind_port*]
|
|
# (Optional) Integer. Port to listen on. defaults to 25827.
|
|
#
|
|
# [*log_messages*]
|
|
# (Optional) String. Log level for the plugin, set to "debug" to show
|
|
# messages received.
|
|
# Defaults to 'info'
|
|
#
|
|
#
|
|
define tripleo::profile::base::metrics::collectd::sqlalchemy_collectd (
|
|
$bind_host = '0.0.0.0',
|
|
$bind_port = 25827,
|
|
$log_messages = 'info',
|
|
|
|
) {
|
|
include ::collectd
|
|
|
|
package { 'python-collectd-sqlalchemy':
|
|
ensure => 'present',
|
|
}
|
|
|
|
::collectd::plugin::python::module { 'collectd_sqlalchemy':
|
|
config => [{
|
|
'listen' => [$bind_host, $bind_port],
|
|
'loglevel' => $log_messages
|
|
}],
|
|
module_import => 'sqlalchemy_collectd.server.plugin',
|
|
}
|
|
|
|
}
|