X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/7013f21316fbdc86a8a36c7aea7f908878db6ef7..bb6a3be37eb6b0de039c6451dcad0fe3bddbf55d:/roles/web-backend.rb diff --git a/roles/web-backend.rb b/roles/web-backend.rb index 4c6dff43f..a3cf9413b 100644 --- a/roles/web-backend.rb +++ b/roles/web-backend.rb @@ -3,16 +3,17 @@ description "Role applied to all web/api backend servers" default_attributes( :apache => { - :mpm => "worker", - :worker => { - :max_connections_per_child => 10000 + :mpm => "event", + :event => { + :max_connections_per_child => 10000, + :async_request_worker_factor => 4 } }, :logstash => { :forwarder => { - :files => [ - { :paths => ["/var/log/apache2/access.log"], :fields => { :type => "apache" } }, - { :paths => ["/var/log/web/rails-logstash.log"], :fields => { :type => "rails" } } + "filebeat.prospectors" => [ + { "input_type" => "log", "paths" => ["/var/log/apache2/access.log"], "fields" => { "type" => "apache" } }, + { "input_type" => "log", "paths" => ["/var/log/web/rails-logstash.log"], "fields" => { "type" => "rails" } } ] } },