Add collectd support to telegraf

Telegraf need types.db to collect samples from collectd via UDP.
Install collectd package to support this feature.
Support this change: Ie868a4c23cb793e6054e14ee1209a56256c130ac

Change-Id: I33b1a3fe606bf5bd4a08901c7bf274aed5303055
This commit is contained in:
guochao 2017-07-21 11:06:08 +08:00 committed by jimmygc
parent bcdd0ae80b
commit 5dc18b1ee5
1 changed files with 11 additions and 0 deletions

View File

@ -12,6 +12,17 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
'python-pip',
'telegraf'
] %}
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
{% set telegraf_packages = telegraf_packages + [
'collectd'
] %}
{% elif base_distro in ['debian', 'ubuntu'] %}
{% set telegraf_packages = telegraf_packages + [
'collectd-core'
] %}
{% endif %}
{{ macros.install_packages(telegraf_packages | customizable("packages")) }}
COPY telegraf_sudoers /etc/sudoers.d/kolla_telegraf_sudoers