forked from sensu/sensu-community-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostgres-statsio-metric.rb
executable file
·92 lines (78 loc) · 3.23 KB
/
postgres-statsio-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
89
90
91
92
#!/usr/bin/env ruby
#
# Postgres StatIO Metrics
# ===
#
# Dependencies
# -----------
# - PSQL `track_io_timing` 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 PostgresStatsIOMetrics < 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 :scope,
:description => "Scope, see http://www.postgresql.org/docs/9.2/static/monitoring-stats.html",
:short => '-s SCOPE',
:long => '--scope SCOPE',
:default => 'user'
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, config[:db], config[:user], config[:password])
request = [
"select sum(heap_blks_read) as heap_blks_read, sum(heap_blks_hit) as heap_blks_hit,",
"sum(idx_blks_read) as idx_blks_read, sum(idx_blks_hit) as idx_blks_hit,",
"sum(toast_blks_read) as toast_blks_read, sum(toast_blks_hit) as toast_blks_hit,",
"sum(tidx_blks_read) as tidx_blks_read, sum(tidx_blks_hit) as tidx_blks_hit",
"from pg_statio_#{config[:scope]}_tables"
]
con.exec(request.join(' ')) do |result|
result.each do |row|
output "#{config[:scheme]}.statsio.#{config[:db]}.heap_blks_read", row['heap_blks_read'], timestamp
output "#{config[:scheme]}.statsio.#{config[:db]}.heap_blks_hit", row['heap_blks_hit'], timestamp
output "#{config[:scheme]}.statsio.#{config[:db]}.idx_blks_read", row['idx_blks_read'], timestamp
output "#{config[:scheme]}.statsio.#{config[:db]}.idx_blks_hit", row['idx_blks_hit'], timestamp
output "#{config[:scheme]}.statsio.#{config[:db]}.toast_blks_read", row['toast_blks_read'], timestamp
output "#{config[:scheme]}.statsio.#{config[:db]}.toast_blks_hit", row['toast_blks_hit'], timestamp
output "#{config[:scheme]}.statsio.#{config[:db]}.tidx_blks_read", row['tidx_blks_read'], timestamp
output "#{config[:scheme]}.statsio.#{config[:db]}.tidx_blks_hit", row['tidx_blks_hit'], timestamp
end
end
ok
end
end