X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/c6902ea9afba17351101f28b4a401e5193b89c1b..ccf9563416b85c75090157d656d7674e7a3d8b2a:/cookbooks/munin/recipes/server.rb diff --git a/cookbooks/munin/recipes/server.rb b/cookbooks/munin/recipes/server.rb index 063f4dbc5..f9fe98def 100644 --- a/cookbooks/munin/recipes/server.rb +++ b/cookbooks/munin/recipes/server.rb @@ -1,8 +1,8 @@ # -# Cookbook Name:: munin +# Cookbook:: munin # Recipe:: server # -# Copyright 2010, OpenStreetMap Foundation +# Copyright:: 2010, OpenStreetMap Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -45,9 +45,9 @@ munin_plugin "rrdcached" expiry_time = 14 * 86400 -clients = search(:node, "recipes:munin\\:\\:default").sort_by(&:name) # ~FC010 -frontends = search(:node, "recipes:web\\:\\:frontend").reject { |n| Time.now - Time.at(n[:ohai_time]) > expiry_time }.map(&:name).sort # ~FC010 -backends = search(:node, "recipes:web\\:\\:backend").reject { |n| Time.now - Time.at(n[:ohai_time]) > expiry_time }.map(&:name).sort # ~FC010 +clients = search(:node, "recipes:munin\\:\\:default").sort_by(&:name) +frontends = search(:node, "recipes:web\\:\\:frontend").reject { |n| Time.now - Time.at(n[:ohai_time]) > expiry_time }.map(&:name).sort +backends = search(:node, "recipes:web\\:\\:backend").reject { |n| Time.now - Time.at(n[:ohai_time]) > expiry_time }.map(&:name).sort tilecaches = search(:node, "roles:tilecache").reject { |n| Time.now - Time.at(n[:ohai_time]) > expiry_time }.sort_by(&:name).map do |n| { :name => n.name.split(".").first, :interface => n.interfaces(:role => :external).first[:interface].tr(".", "_") } end @@ -106,21 +106,6 @@ template "/etc/cron.daily/munin-backup" do mode 0o755 end -# simple shell script to dump RRD data to a file -cookbook_file "/usr/local/bin/rrddump" do - source "rrddump.sh" - owner "root" - group "root" - mode 0o755 -end - -template "/etc/cron.d/rrddump" do - source "rrddump.cron.erb" - owner "root" - group "root" - mode 0o755 -end - munin_plugin "munin_stats" munin_plugin "munin_update" munin_plugin "munin_rrdcached"