mirror of https://github.com/ceph/ceph-ansible.git
25 lines
586 B
YAML
25 lines
586 B
YAML
---
|
|
###########
|
|
# GENERAL #
|
|
###########
|
|
|
|
ceph_exporter_addr: "0.0.0.0"
|
|
ceph_exporter_port: 9926
|
|
ceph_exporter_stats_period: 5 # seconds
|
|
ceph_exporter_prio_limit: 5
|
|
|
|
##########
|
|
# DOCKER #
|
|
##########
|
|
|
|
# If you want to add parameters, you should retain the existing ones and include the new ones.
|
|
ceph_exporter_container_params:
|
|
args:
|
|
- -f
|
|
- -n=client.ceph-exporter
|
|
- --sock-dir=/var/run/ceph
|
|
- --addrs={{ ceph_exporter_addr }}
|
|
- --port={{ ceph_exporter_port }}
|
|
- --stats-period={{ ceph_exporter_stats_period }}
|
|
- --prio-limit={{ ceph_exporter_prio_limit }}
|