forked from sensu/sensu-community-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostgres-connections-metric.rb
executable file
·88 lines (73 loc) · 2.19 KB
/
postgres-connections-metric.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env ruby
#
# Postgres Connection Metrics
# ===
#
# Dependencies
# -----------
# - Ruby gem `pg`
#
#
# Copyright 2012 Kwarter, Inc <[email protected]>
# Author Gilles Devaux <[email protected]>
#
# Released under the same terms as Sensu (the MIT license); see LICENSE
# for details.
require 'rubygems' if RUBY_VERSION < '1.9.0'
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 count(*), waiting from pg_stat_activity",
"where datname = '#{config[:db]}' group by waiting"
]
metrics = {
:active => 0,
:waiting => 0
}
con.exec(request.join(' ')) do |result|
result.each do |row|
if row['waiting']
metrics[:waiting] = row['count']
else
metrics[:active] = row['count']
end
end
end
metrics.each do |metric, value|
output "#{config[:scheme]}.connections.#{config[:db]}.#{metric}", value, timestamp
end
ok
end
end