buluma.collectd
Ansible 角色 collectd
在你的系统上安装和配置 collectd。
GitHub | 版本 | 问题 | 拉取请求 | 下载次数 |
---|---|---|---|---|
示例剧本
这个示例来自 molecule/default/converge.yml
,并在每次推送、拉取请求和发布时进行测试。
---
- name: converge
hosts: all
become: true
gather_facts: true
vars:
collectd_plugin_logging: logfile
collectd_basic_plugins:
- cpu
- interface
- load
- memory
collectd_plugins:
- name: df
config: |
MountPoint "/proc"
MountPoint "/dev"
MountPoint "/\/docker\/containers\//"
MountPoint "/\/docker\/devicemapper\//"
MountPoint "/\/docker\/plugins\//"
MountPoint "/\/docker\/overlay\//"
MountPoint "/\/docker\/overlay2\//"
MountPoint "/\/docker\/netns\//"
FSType "overlay"
FSType "proc"
FSType "tmpfs"
IgnoreSelected true
ReportInodes true
- name: disk
config: |
Disk "/^hd"
IgnoreSelected true
- name: interface
config: |
Interface "lo"
Interface "/veth.*/"
IgnoreSelected true
- name: swap
config: |
ReportByDevice false
ReportBytes true
- name: write_http
config: |
<Node "test">
URL "127.0.0.1:8080/test.collectd"
Format "JSON"
StoreRates true
</Node>
- name: postgresql
config: |
<Query tickets>
Statement "SELECT count(t.id) AS count FROM tickets t WHERE t.closed is null;"
<Result>
Type gauge
InstancePrefix "tickets"
ValuesFrom "count"
</Result>
</Query>
<Database "test">
Host "psql-database.hostname.com"
Port "5432"
User "my_psqladminuser"
Password "my_passwd"
SSLMode "prefer"
Query tickets
</Database>
pre_tasks:
- name: 更新 apt 缓存。
apt: update_cache=true cache_valid_time=600
when: ansible_os_family == 'Debian'
roles:
- role: buluma.collectd
机器需要做好准备。在 CI 中,这可以通过 molecule/default/prepare.yml
来完成:
---
- name: prepare
hosts: all
become: true
gather_facts: false
roles:
- role: buluma.bootstrap
- role: buluma.epel
另请参阅 如何使用这些角色的完整说明和示例。
角色变量
变量的默认值设置在 defaults/main.yml
:
---
# collectd 的默认文件
collectd_conf_hostname: "{{ ansible_hostname }}"
collectd_conf_fqdnlookup: "false"
collectd_conf_basedir: /var/lib/collectd
collectd_conf_pidfile: /var/run/collectd.pid
collectd_conf_typesdb: /usr/share/collectd/types.db
collectd_conf_autoloadplugin: "false"
collectd_conf_collectinternalstats: "false"
collectd_conf_interval: 10
collectd_conf_maxreadinterval: 86400
collectd_conf_timeout: 2
collectd_conf_readthreads: 5
collectd_conf_writethreads: 5
collectd_conf_include_dir: /etc/collectd.d
collectd_conf_fnmatch_filters:
- "*.conf"
collectd_conf_extra: ~
#### 日志配置
collectd_plugin_logging: syslog
collectd_plugin_logging_directory: "/var/log/collectd"
collectd_plugin_logfile_loglevel: "info"
collectd_plugin_logfile_file: "{{ collectd_plugin_logging_directory }}/collectd.log"
collectd_plugin_logfile_timestamp: "true"
collectd_plugin_logfile_printseverity: "false"
collectd_plugin_logstash_loglevel: "info"
collectd_plugin_logstash_file: "{{ collectd_plugin_logging_directory }}/collectd.json.log"
collectd_plugin_syslog_loglevel: "info"
# collectd_plugin_syslog_notifylevel: ""
# 使用 'collectd_basic_plugins' 启用不需要额外配置的插件。
collectd_basic_plugins:
- cpu
- interface
- load
- memory
# - aggregation
# - amqp
# - apache
# - apcups
# - apple_sensors
# - aquaero
# - ascent
# - barometer
# - battery
# - bind
# - ceph
# - cgroups
# - chrony
# - conntrack
# - contextswitch
# - cpu
# - cpufreq
# - cpusleep
# - csv
# - curl
# - curl_json
# - curl_xml
# - dbi
# - df
# - disk
# - dns
# - dpdkevents
# - dpdkstat
# - drbd
# - email
# - entropy
# - ethstat
# - exec
# - fhcount
# - filecount
# - fscache
# - gmond
# - gps
# - grpc
# - hddtemp
# - hugepages
# - intel_pmu
# - intel_rdt
# - interface
# - ipc
# - ipmi
# - iptables
# - ipvs
# - irq
# - java
# - load
# - lpar
# - lua
# - lvm
# - madwifi
# - mbmon
# - mcelog
# - md
# - memcachec
# - memcached
# - memory
# - mic
# - modbus
# - mqtt
# - multimeter
# - mysql
# - netapp
# - netlink
# - network
# - nfs
# - nginx
# - notify_desktop
# - notify_email
# - notify_nagios
# - ntpd
# - numa
# - nut
# - olsrd
# - onewire
# - openldap
# - openvpn
# - oracle
# - ovs_events
# - ovs_stats
# - perl
# - pinba
# - ping
# - postgresql
# - powerdns
# - processes
# - protocols
# - python
# - redis
# - routeros
# - rrdcached
# - rrdtool
# - sensors
# - serial
# - sigrok
# - smart
# - snmp
# - snmp_agent
# - statsd
# - swap
# - table
# - tail
# - tail_csv
# - tape
# - tcpconns
# - teamspeak2
# - ted
# - thermal
# - tokyotyrant
# - turbostat
# - unixsock
# - uptime
# - users
# - uuid
# - varnish
# - virt
# - vmem
# - vserver
# - wireless
# - write_graphite
# - write_http
# - write_kafka
# - write_log
# - write_mongodb
# - write_prometheus
# - write_redis
# - write_riemann
# - write_sensu
# - write_tsdb
# - xencpu
# - xmms
# - zfs_arc
# - zone
# - zookeeper
# 使用 'collectd_plugins' 启用需要额外配置的插件。
collectd_plugins: []
# 示例:
# - name: example
# interval: 120 #秒
# flush_interval: 600 #秒
# flush_timeout:
# config: |4
# Something: true
# <Nested block>
# NestedKey: "value"
# </Nested>
# - name: write_http
# config: |4
# <Node "oms">
# URL "127.0.0.1:26000/oms.collectd"
# Format "JSON"
# StoreRates true
# </Node>
# - name: postgresql
# config: |4
# <Query tickets>
# Statement "SELECT count(t.id) AS count FROM tickets t WHERE t.closed is null;"
# <Result>
# Type gauge
# InstancePrefix "tickets"
# ValuesFrom "count"
# </Result>
# </Query>
# <Database "test">
# Host "psql-database.hostname.com"
# Port "5432"
# User "my_psqladminuser"
# Password "my_passwd"
# SSLMode "prefer"
# Query tickets
# </Database>
要求
- 在 requirements.txt 中列出的 pip 包。
已用角色状态
以下角色用于准备系统。你可以通过其他方式准备你的系统。
需求 | GitHub | 版本 |
---|---|---|
buluma.bootstrap | ||
buluma.epel |
上下文
这个角色是许多兼容角色的一部分。请查看 这些角色的文档 以获取更多信息。
这里是相关角色的概述:
兼容性
这个角色已经在以下 容器镜像 上进行了测试:
容器 | 标签 |
---|---|
Alpine | 所有 |
EL | 8 |
Debian | bullseye |
Fedora | 所有 |
opensuse | 所有 |
Ubuntu | focal, bionic |
所需的最低 Ansible 版本为 2.10,测试已在:
- 先前版本
- 当前版本
- 开发版本
如果你发现问题,请在 GitHub 上反馈。