X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/6bf5013e5d298962c5a54bc395b53a5ec1a8a5ba..84f17c000a6997b9736011730c5764b09921c6f7:/cookbooks/postgresql/resources/munin.rb diff --git a/cookbooks/postgresql/resources/munin.rb b/cookbooks/postgresql/resources/munin.rb index aa4f8c8e6..78bbacbbd 100644 --- a/cookbooks/postgresql/resources/munin.rb +++ b/cookbooks/postgresql/resources/munin.rb @@ -17,12 +17,47 @@ # limitations under the License. # -actions :create, :delete default_action :create -attribute :name, :kind_of => String, :name_attribute => true -attribute :cluster, :kind_of => String, :required => true -attribute :database, :kind_of => String, :required => true +property :munin, :kind_of => String, :name_attribute => true +property :cluster, :kind_of => String, :required => true +property :database, :kind_of => String, :required => true + +action :create do + cluster = node[:postgresql][:clusters] && node[:postgresql][:clusters][new_resource.cluster] + database = new_resource.database + + if cluster + %w[cache connections locks querylength scans size transactions tuples].each do |plugin| + munin_plugin "postgres_#{plugin}_#{database}:#{suffix}" do + target "postgres_#{plugin}_" + conf "munin.erb" + conf_cookbook "postgresql" + conf_variables :port => cluster[:port] + restart_munin false + end + end + else + Chef::Log.info "Postgres cluster #{new_resource.cluster} not found" + end +end + +action :delete do + database = new_resource.database + + %w[cache connections locks querylength scans size transactions tuples].each do |plugin| + munin_plugin "postgres_#{plugin}_#{database}:#{suffix}" do + action :delete + restart_munin false + end + end +end + +action_class do + def suffix + new_resource.cluster.tr("/", ":") + end +end def after_created notifies :restart, "service[munin-node]"