#! /usr/bin/env ruby # # metric-postgres-dbsize # # DESCRIPTION: # # This plugin collects postgres database size metrics # # OUTPUT: # metric data # # PLATFORMS: # Linux # # DEPENDENCIES: # gem: sensu-plugin # gem: pg # # USAGE: # ./metric-postgres-dbsize.rb -u db_user -p db_pass -h db_host -d db # # NOTES: # # LICENSE: # Copyright (c) 2012 Kwarter, Inc # Author Gilles Devaux # Released under the same terms as Sensu (the MIT license); see LICENSE # for details. # require 'sensu-plugin/metric/cli' require 'pg' require 'socket' class PostgresStatsDBMetrics < Sensu::Plugin::Metric::CLI::Graphite option :user, description: 'Postgres User', short: '-u USER', long: '--user USER' option :password, description: 'Postgres Password', short: '-p PASS', long: '--password PASS' option :hostname, description: 'Hostname to login to', short: '-h HOST', long: '--hostname HOST', default: 'localhost' option :port, description: 'Database port', short: '-P PORT', long: '--port PORT', default: 5432 option :db, description: 'Database name', short: '-d DB', long: '--db DB', default: 'postgres' option :scheme, description: 'Metric naming scheme, text to prepend to $queue_name.$metric', long: '--scheme SCHEME', default: "#{Socket.gethostname}.postgresql" def run timestamp = Time.now.to_i con = PG::Connection.new(config[:hostname], config[:port], nil, nil, 'postgres', config[:user], config[:password]) request = [ "select pg_database_size('#{config[:db]}')" ] con.exec(request.join(' ')) do |result| result.each do |row| output "#{config[:scheme]}.size.#{config[:db]}", row['pg_database_size'], timestamp end end ok end end