X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/aff3fbe6802d93a8deae8fa2637589c8d28f6681..c714aba0de40828044677c7b38890e3f7ba91436:/roles/web-backend.rb diff --git a/roles/web-backend.rb b/roles/web-backend.rb index 3474840e8..d59ce812e 100644 --- a/roles/web-backend.rb +++ b/roles/web-backend.rb @@ -5,14 +5,14 @@ default_attributes( :apache => { :mpm => "worker", :worker => { - :max_requests_per_child => 10000 + :max_connections_per_child => 10000 } }, :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" } } ] } },