puppet-swift/templates/object-server.conf.erb
Aleksandr Didenko a2cae16d31 Allow to customize log_name for services
This patch allows us to customize log_name for:
- proxy-server
- container-server
- object-server
- account-server

Which may be usefull for log collecting/parsing. Defaults remain
as they were before the patch.

Change-Id: I173652ec5bbe8d4382e10db4510d91aebceacab5
2014-10-14 21:14:37 +03:00

28 lines
637 B
Plaintext

[DEFAULT]
devices = <%= @devices %>
bind_ip = <%= @storage_local_net_ip %>
bind_port = <%= @bind_port %>
mount_check = <%= @mount_check %>
user = <%= @user %>
log_facility = <%= @log_facility %>
workers = <%= @workers %>
[pipeline:main]
pipeline = <%= @pipeline.to_a.join(' ') %>
[app:object-server]
use = egg:swift#object
set log_name = <%= @log_name %>
set log_facility = <%= @log_facility %>
set log_level = <%= @log_level %>
set log_requests = True
set log_address = <%= @log_address %>
[object-replicator]
concurrency = <%= @replicator_concurrency %>
[object-updater]
concurrency = <%= @updater_concurrency %>
[object-auditor]