]> git.openstreetmap.org Git - chef.git/commitdiff
Convert postgresql_munin to an LWRP
authorTom Hughes <tom@compton.nu>
Wed, 11 Feb 2015 22:38:22 +0000 (22:38 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 11 Feb 2015 22:45:08 +0000 (22:45 +0000)
cookbooks/postgresql/.foodcritic
cookbooks/postgresql/definitions/postgresql_munin.rb [deleted file]
cookbooks/postgresql/providers/munin.rb [new file with mode: 0644]
cookbooks/postgresql/resources/munin.rb [new file with mode: 0644]

index e9a7c92333039bf61f4f9c6ba263b883432b67ef..3907cff00016cb7234f45853f10398815db197e8 100644 (file)
@@ -1,2 +1 @@
 ~FC001
-~FC015
diff --git a/cookbooks/postgresql/definitions/postgresql_munin.rb b/cookbooks/postgresql/definitions/postgresql_munin.rb
deleted file mode 100644 (file)
index 3b60563..0000000
+++ /dev/null
@@ -1,94 +0,0 @@
-#
-# Cookbook Name:: postgresql
-# Definition:: postgresql_munin
-#
-# Copyright 2012, OpenStreetMap Foundation
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-define :postgresql_munin, :action => :create do
-  cluster = params[:cluster]
-  suffix = cluster.tr("/", ":")
-  database = params[:database]
-
-  if node[:postgresql][:clusters] && node[:postgresql][:clusters][cluster]
-    munin_plugin "postgres_cache_#{database}:#{suffix}" do
-      action params[:action]
-      target "postgres_cache_"
-      conf "munin.erb"
-      conf_cookbook "postgresql"
-      conf_variables :port => node[:postgresql][:clusters][cluster][:port]
-    end
-
-    munin_plugin "postgres_connections_#{database}:#{suffix}" do
-      action params[:action]
-      target "postgres_connections_"
-      conf "munin.erb"
-      conf_cookbook "postgresql"
-      conf_variables :port => node[:postgresql][:clusters][cluster][:port]
-    end
-
-    munin_plugin "postgres_locks_#{database}:#{suffix}" do
-      action params[:action]
-      target "postgres_locks_"
-      conf "munin.erb"
-      conf_cookbook "postgresql"
-      conf_variables :port => node[:postgresql][:clusters][cluster][:port]
-    end
-
-    munin_plugin "postgres_querylength_#{database}:#{suffix}" do
-      action params[:action]
-      target "postgres_querylength_"
-      conf "munin.erb"
-      conf_cookbook "postgresql"
-      conf_variables :port => node[:postgresql][:clusters][cluster][:port]
-    end
-
-    munin_plugin "postgres_scans_#{database}:#{suffix}" do
-      action params[:action]
-      target "postgres_scans_"
-      conf "munin.erb"
-      conf_cookbook "postgresql"
-      conf_variables :port => node[:postgresql][:clusters][cluster][:port]
-    end
-
-    munin_plugin "postgres_size_#{database}:#{suffix}" do
-      action params[:action]
-      target "postgres_size_"
-      conf "munin.erb"
-      conf_cookbook "postgresql"
-      conf_variables :port => node[:postgresql][:clusters][cluster][:port]
-    end
-
-    munin_plugin "postgres_transactions_#{database}:#{suffix}" do
-      action params[:action]
-      target "postgres_transactions_"
-      conf "munin.erb"
-      conf_cookbook "postgresql"
-      conf_variables :port => node[:postgresql][:clusters][cluster][:port]
-    end
-
-    munin_plugin "postgres_tuples_#{database}:#{suffix}" do
-      action params[:action]
-      target "postgres_tuples_"
-      conf "munin.erb"
-      conf_cookbook "postgresql"
-      conf_variables :port => node[:postgresql][:clusters][cluster][:port]
-    end
-  else
-    log "Postgres cluster #{cluster} not found" do
-      level :warn
-    end
-  end
-end
diff --git a/cookbooks/postgresql/providers/munin.rb b/cookbooks/postgresql/providers/munin.rb
new file mode 100644 (file)
index 0000000..986c11f
--- /dev/null
@@ -0,0 +1,58 @@
+#
+# Cookbook Name:: postgresql
+# Provider:: postgresql_munin
+#
+# Copyright 2015, OpenStreetMap Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+def whyrun_supported?
+  true
+end
+
+use_inline_resources
+
+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
+
+def suffix
+  new_resource.cluster.tr("/", ":")
+end
diff --git a/cookbooks/postgresql/resources/munin.rb b/cookbooks/postgresql/resources/munin.rb
new file mode 100644 (file)
index 0000000..aa4f8c8
--- /dev/null
@@ -0,0 +1,29 @@
+#
+# Cookbook Name:: postgresql
+# Resource:: postgresql_munin
+#
+# Copyright 2015, OpenStreetMap Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# 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
+
+def after_created
+  notifies :restart, "service[munin-node]"
+end