0876b4fb73
By default, statsd metrics can be sent by the swift account, container and object storage services for diagnostic and monitoring purposes, but are disabled by default. This change exposes charm config settings that allow it to be enabled by setting 'statsd_host' to a non-empty value. 'statsd_port' and 'statsd_sample_rate' are also supported for changing the destination port and rate at which metrics are collected. Closes-Bug: #1729770 Change-Id: If1bf3ced8a9ed07af81f352eb0263659d147e3aa
27 lines
490 B
Plaintext
27 lines
490 B
Plaintext
[DEFAULT]
|
|
bind_ip = {{ bind_host }}
|
|
bind_port = {{ account_server_port }}
|
|
workers = {{ workers }}
|
|
|
|
{% if statsd_host %}
|
|
log_statsd_host = {{ statsd_host }}
|
|
log_statsd_port = {{ statsd_port }}
|
|
log_statsd_default_sample_rate = {{ statsd_sample_rate }}
|
|
|
|
{% endif %}
|
|
[pipeline:main]
|
|
pipeline = recon account-server
|
|
|
|
[filter:recon]
|
|
use = egg:swift#recon
|
|
recon_cache_path = /var/cache/swift
|
|
|
|
[app:account-server]
|
|
use = egg:swift#account
|
|
|
|
[account-replicator]
|
|
|
|
[account-auditor]
|
|
|
|
[account-reaper]
|