forked from sensu/sensu-community-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostgres-statsdb-metric.rb
executable file
·86 lines (73 loc) · 2.91 KB
/
postgres-statsdb-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
#!/usr/bin/env ruby
#
# Postgres Stat DB Metrics
# ===
#
# Dependencies
# -----------
# - PSQL `track_counts` `track_io_timing` for some metrics enabled
# - 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 xact_commit, xact_rollback,",
"blks_read, blks_hit,",
"tup_returned, tup_fetched, tup_inserted, tup_updated, tup_deleted",
"from pg_stat_database where datname='#{config[:db]}'"
]
con.exec(request.join(' ')) do |result|
result.each do |row|
output "#{config[:scheme]}.statsdb.#{config[:db]}.xact_commit", row['xact_commit'], timestamp
output "#{config[:scheme]}.statsdb.#{config[:db]}.xact_rollback", row['xact_rollback'], timestamp
output "#{config[:scheme]}.statsdb.#{config[:db]}.blks_read", row['blks_read'], timestamp
output "#{config[:scheme]}.statsdb.#{config[:db]}.blks_hit", row['blks_hit'], timestamp
output "#{config[:scheme]}.statsdb.#{config[:db]}.tup_returned", row['tup_returned'], timestamp
output "#{config[:scheme]}.statsdb.#{config[:db]}.tup_fetched", row['tup_fetched'], timestamp
output "#{config[:scheme]}.statsdb.#{config[:db]}.tup_inserted", row['tup_inserted'], timestamp
output "#{config[:scheme]}.statsdb.#{config[:db]}.tup_updated", row['tup_updated'], timestamp
output "#{config[:scheme]}.statsdb.#{config[:db]}.tup_deleted", row['tup_deleted'], timestamp
end
end
ok
end
end