03354bc99e
This change adds enable_fluentd option and enables some other log shippers to be integrated. When enable_fluentd is "no", syslog server is also disabled. Then, this change also adds syslog parameters to use a syslog server prepared by users. Change-Id: I7c83ef7fe30a6b9ab7385bcee953ad07e96b0a83 Implements: blueprint fluentd-enable-option
31 lines
795 B
Django/Jinja
31 lines
795 B
Django/Jinja
[DEFAULT]
|
|
bind_ip = {{ hostvars[inventory_hostname]['ansible_' + storage_interface]['ipv4']['address'] }}
|
|
bind_port = {{ swift_account_server_port }}
|
|
devices = {{ swift_devices_mount_point }}
|
|
mount_check = false
|
|
log_udp_host = {{ syslog_server }}
|
|
log_udp_port = {{ syslog_udp_port }}
|
|
log_name = {{ service_name }}
|
|
log_facility = {{ syslog_swift_facility }}
|
|
log_level = INFO
|
|
workers = {{ openstack_service_workers }}
|
|
|
|
[pipeline:main]
|
|
pipeline = account-server
|
|
|
|
[app:account-server]
|
|
use = egg:swift#account
|
|
|
|
{% if service_name == 'swift-account-auditor' %}
|
|
[account-auditor]
|
|
{% endif %}
|
|
|
|
{% if service_name == 'swift-account-replicator' %}
|
|
[account-replicator]
|
|
sync_module = {replication_ip}:{meta}:account
|
|
{% endif %}
|
|
|
|
{% if service_name == 'swift-account-reaper' %}
|
|
[account-reaper]
|
|
{% endif %}
|