include_recipe "apt"
include_recipe "munin"
+include_recipe "prometheus"
if node[:squid][:version] >= 3
apt_package "squid" do
dropin "chef"
limit_nofile 98304
private_tmp true
- private_devices true
+ private_devices node[:squid][:private_devices]
protect_system "full"
protect_home true
restrict_address_families address_families
munin_plugin "squid_delay_pools_noreferer" do
action :delete
end
+
+prometheus_exporter "squid" do
+ port 9301
+ listen_switch "listen"
+end