c79547cb91
This adds the optional configuration options: - statsd_host - statsd_port - statsd_metric_prefix (defaults to inventory_hostname) - statsd_default_sample_rate - statsd_sample_rate_factor Which can be defined under swift globally or on the server level. The configuration will only be added if statsd_host is defined. Change-Id: I793b189e0a1f5ca4fc1fe17b1d89f2a83af8c796
33 lines
774 B
Django/Jinja
33 lines
774 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
[DEFAULT]
|
|
swift_dir = /etc/swift
|
|
user = {{ swift_system_user_name }}
|
|
log_facility = LOG_LOCAL3
|
|
{% include "statsd.j2" %}
|
|
|
|
[container-reconciler]
|
|
# The reconciler will re-attempt reconciliation if the source object is not
|
|
# available up to reclaim_age seconds before it gives up and deletes the entry
|
|
# in the queue.
|
|
reclaim_age = {{ reclaim_age | default(604800) }}
|
|
# The cycle time of the daemon
|
|
interval = 30
|
|
# Server errors from requests will be retried by default
|
|
request_tries = 3
|
|
|
|
[pipeline:main]
|
|
pipeline = catch_errors proxy-logging cache proxy-server
|
|
|
|
[app:proxy-server]
|
|
use = egg:swift#proxy
|
|
|
|
[filter:cache]
|
|
use = egg:swift#memcache
|
|
|
|
[filter:proxy-logging]
|
|
use = egg:swift#proxy_logging
|
|
|
|
[filter:catch_errors]
|
|
use = egg:swift#catch_errors
|