From: Grant Slater Date: Thu, 31 Oct 2019 23:13:35 +0000 (+0000) Subject: nginx: add munin monitoring X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/bc6624fcc809acaf8dcdcf667e43cc5fc9bb1451?hp=8ae7e4dee68df33c5f5b0f520e481d1ed1633cae nginx: add munin monitoring --- diff --git a/cookbooks/nginx/recipes/default.rb b/cookbooks/nginx/recipes/default.rb index 95c9f8b17..ade13504d 100644 --- a/cookbooks/nginx/recipes/default.rb +++ b/cookbooks/nginx/recipes/default.rb @@ -50,3 +50,10 @@ service "nginx" do supports :status => true, :restart => true, :reload => true subscribes :restart, "template[/etc/nginx/nginx.conf]" end + +munin_plugin_conf "nginx" do + template "munin.erb" +end + +munin_plugin "nginx_request" +munin_plugin "nginx_status" diff --git a/cookbooks/nginx/templates/default/munin.erb b/cookbooks/nginx/templates/default/munin.erb new file mode 100644 index 000000000..56a2effaf --- /dev/null +++ b/cookbooks/nginx/templates/default/munin.erb @@ -0,0 +1,2 @@ +[nginx*] + env.url http://localhost:8050/nginx_status diff --git a/cookbooks/nginx/templates/default/nginx.conf.erb b/cookbooks/nginx/templates/default/nginx.conf.erb index 03671bbe0..a16d25812 100644 --- a/cookbooks/nginx/templates/default/nginx.conf.erb +++ b/cookbooks/nginx/templates/default/nginx.conf.erb @@ -57,5 +57,17 @@ http { proxy_cache_path /var/cache/nginx/proxy-cache levels=1:2 use_temp_path=off keys_zone=<%= node['nginx']['cache']['proxy']['keys_zone'] %> inactive=<%= node['nginx']['cache']['proxy']['inactive'] %> max_size=<%= node['nginx']['cache']['proxy']['max_size'] %>; <% end -%> + # Internal site for munin monitoring + server { + listen 127.0.0.1:8050; + server_name localhost; + location /nginx_status { + stub_status on; + access_log off; + allow 127.0.0.1; + deny all; + } + } + include /etc/nginx/conf.d/*.conf; }