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
43 lines
1002 B
Django/Jinja
43 lines
1002 B
Django/Jinja
[DEFAULT]
|
|
bind_ip = {{ hostvars[inventory_hostname]['ansible_' + storage_interface]['ipv4']['address'] }}
|
|
bind_port = {{ swift_object_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]
|
|
{% if service_name == 'swift-object-expirer' %}
|
|
pipeline = proxy-server
|
|
{% else %}
|
|
pipeline = object-server
|
|
{% endif %}
|
|
|
|
[app:object-server]
|
|
use = egg:swift#object
|
|
|
|
{% if service_name == 'swift-object-auditor' %}
|
|
[object-auditor]
|
|
{% endif %}
|
|
|
|
[object-replicator]
|
|
{% if service_name == 'swift-object-replicator' %}
|
|
sync_module = {replication_ip}:{meta}:object
|
|
{% endif %}
|
|
|
|
{% if service_name == 'swift-object-updater' %}
|
|
[object-updater]
|
|
{% endif %}
|
|
|
|
{% if service_name == 'swift-object-expirer' %}
|
|
[object-expirer]
|
|
|
|
[app:proxy-server]
|
|
use = egg:swift#proxy
|
|
{% endif %}
|