forked from outlyerapp/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostgres.py
More file actions
executable file
·277 lines (244 loc) · 13.3 KB
/
postgres.py
File metadata and controls
executable file
·277 lines (244 loc) · 13.3 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
#!/usr/bin/env python
"""
Update the settings block below.
If you want to create a non priviledged user to run this script use:
CREATE ROLE dataloop WITH LOGIN ENCRYPTED PASSWORD 'changeme';
GRANT SELECT ON ALL SEQUENCES IN SCHEMA public TO dataloop;
And set the settings block below to use the dataloop user.
"""
import psycopg2
import psycopg2.extras
import functools
import time
import sys
from time import sleep
# Settings
HOST = 'localhost'
PORT = '5432'
DB = ''
USER = 'postgres'
PASSWORD = ''
# Cache for postgres query values, this prevents opening db connections for each metric_handler callback
class Cache(object):
def __init__(self, expiry):
self.expiry = expiry
self.curr_time = 0
self.last_time = 0
self.last_value = None
def __call__(self, func):
@functools.wraps(func)
def deco(*args, **kwds):
self.curr_time = time.time()
if self.curr_time - self.last_time > self.expiry:
self.last_value = func(*args, **kwds)
self.last_time = self.curr_time
return self.last_value
return deco
# Queries update the pg_metrics dict with their values based on cache interval
@Cache(60)
def pg_metrics_queries():
pg_metrics = {}
db_conn = psycopg2.connect(pgdsn)
db_curs = db_conn.cursor()
# single session state query avoids multiple scans of pg_stat_activity
# state is a different column name in postgres 9.2, previous versions will have to update this query accordingly
db_curs.execute(
'select state, waiting, \
extract(epoch from current_timestamp - xact_start)::int, \
extract(epoch from current_timestamp - query_start)::int from pg_stat_activity;')
results = db_curs.fetchall()
active = 0
idle = 0
idleintxn = 0
waiting = 0
waitingtrue = 0
active_results = []
for state, waiting, xact_start_sec, query_start_sec in results:
if state == 'active':
active = int(active + 1)
# build a list of query start times where query is active
active_results.append(query_start_sec)
if state == 'idle':
idle = int(idle + 1)
if state == 'idle in transaction':
idleintxn = int(idleintxn + 1)
if waiting == True:
waitingtrue = int(waitingtrue + 1)
# determine longest transaction in seconds
sorted_by_xact = sorted(results, key=lambda tup: tup[2], reverse=True)
longest_xact_in_sec = (sorted_by_xact[0])[2]
# determine longest active query in seconds
sorted_by_query = sorted(active_results, reverse=True)
longest_query_in_sec = sorted_by_query[0]
pg_metrics.update(
{'Pypg_idle_sessions':idle,
'Pypg_active_sessions':active,
'Pypg_waiting_sessions':waiting,
'Pypg_idle_in_transaction_sessions':idleintxn,
'Pypg_longest_xact':longest_xact_in_sec,
'Pypg_longest_query':longest_query_in_sec})
# locks query
db_curs.execute('select mode, locktype from pg_locks;')
results = db_curs.fetchall()
accessexclusive = 0
otherexclusive = 0
shared = 0
for mode, locktype in results:
if (mode == 'AccessExclusiveLock' and locktype != 'virtualxid'):
accessexclusive = int(accessexclusive + 1)
if (mode != 'AccessExclusiveLock' and locktype != 'virtualxid'):
if 'Exclusive' in mode:
otherexclusive = int(otherexclusive + 1)
if ('Share' in mode and locktype != 'virtualxid'):
shared = int(shared + 1)
pg_metrics.update(
{'Pypg_locks_accessexclusive':accessexclusive,
'Pypg_locks_otherexclusive':otherexclusive,
'Pypg_locks_shared':shared})
# background writer query returns one row that needs to be parsed
db_curs.execute(
'select checkpoints_timed, checkpoints_req, checkpoint_write_time, \
checkpoint_sync_time, buffers_checkpoint, buffers_clean, \
buffers_backend, buffers_alloc from pg_stat_bgwriter;')
results = db_curs.fetchall()
bgwriter_values = results[0]
checkpoints_timed = int(bgwriter_values[0])
checkpoints_req = int(bgwriter_values[1])
checkpoint_write_time = int(bgwriter_values[2])
checkpoint_sync_time = int(bgwriter_values[3])
buffers_checkpoint = int(bgwriter_values[4])
buffers_clean = int(bgwriter_values[5])
buffers_backend = int(bgwriter_values[6])
buffers_alloc = int(bgwriter_values[7])
pg_metrics.update(
{'Pypg_bgwriter_checkpoints_timed':checkpoints_timed,
'Pypg_bgwriter_checkpoints_req':checkpoints_req,
'Pypg_bgwriter_checkpoint_write_time':checkpoint_write_time,
'Pypg_bgwriter_checkpoint_sync_time':checkpoint_sync_time,
'Pypg_bgwriter_buffers_checkpoint':buffers_checkpoint,
'Pypg_bgwriter_buffers_clean':buffers_clean,
'Pypg_bgwriter_buffers_backend':buffers_backend,
'Pypg_bgwriter_buffers_alloc':buffers_alloc})
# database statistics returns one row that needs to be parsed
# 5 seconds between metrics for rate calculation
db_curs.execute(
'select (sum(xact_commit) + sum(xact_rollback)), sum(tup_inserted), \
sum(tup_updated), sum(tup_deleted), (sum(tup_returned) + sum(tup_fetched)), \
sum(blks_read), sum(blks_hit) from pg_stat_database;')
results_past = db_curs.fetchall()
time_between = 5
sleep(time_between)
db_curs.execute(
'select (sum(xact_commit) + sum(xact_rollback)), sum(tup_inserted), \
sum(tup_updated), sum(tup_deleted), (sum(tup_returned) + sum(tup_fetched)), \
sum(blks_read), sum(blks_hit) from pg_stat_database;')
results_present = db_curs.fetchall()
pg_stat_past_db_values = results_past[0]
pg_stat_db_values = results_present[0]
transactions = int(pg_stat_db_values[0])
transactions_per_sec = (transactions - int(pg_stat_past_db_values[0])) / time_between
inserts = int(pg_stat_db_values[1])
inserts_per_sec = (inserts - int(pg_stat_past_db_values[1])) / time_between
updates = int(pg_stat_db_values[2])
updates_per_sec = (updates - int(pg_stat_past_db_values[2])) / time_between
deletes = int(pg_stat_db_values[3])
deletes_per_sec = (deletes - int(pg_stat_past_db_values[3])) / time_between
reads = int(pg_stat_db_values[4])
reads_per_sec = (reads - int(pg_stat_past_db_values[4])) / time_between
blksdisk = int(pg_stat_db_values[5])
blksdisk_per_sec = (blksdisk - int(pg_stat_past_db_values[5])) / time_between
blksmem = int(pg_stat_db_values[6])
blksmem_per_sec = (blksmem - int(pg_stat_past_db_values[6])) / time_between
pg_metrics.update(
{'Pypg_transactions':transactions,
'Pypg_transactions_per_sec':transactions_per_sec,
'Pypg_inserts':inserts,
'Pypg_inserts_per_sec':inserts_per_sec,
'Pypg_updates':updates,
'Pypg_updates_per_sec':updates_per_sec,
'Pypg_deletes':deletes,
'Pypg_deletes_per_sec':deletes_per_sec,
'Pypg_reads':reads,
'Pypg_reads_per_sec':reads_per_sec,
'Pypg_blks_diskread':blksdisk,
'Pypg_blks_diskread_per_sec':blksdisk_per_sec,
'Pypg_blks_memread':blksmem,
'Pypg_blks_memread_per_sec':blksmem_per_sec
})
# table statistics returns one row that needs to be parsed
db_curs.execute(
'select sum(seq_tup_read), sum(idx_tup_fetch), \
extract(epoch from now() - min(last_vacuum))::int/60/60, \
extract(epoch from now() - min(last_analyze))::int/60/60 \
from pg_stat_all_tables;')
results = db_curs.fetchall()
pg_stat_table_values = results[0]
seqscan = int(pg_stat_table_values[0])
idxfetch = int(pg_stat_table_values[1])
hours_since_vacuum = int(pg_stat_table_values[2]) if pg_stat_table_values[2] != None else -1
hours_since_analyze = int(pg_stat_table_values[3]) if pg_stat_table_values[3] != None else -1
pg_metrics.update(
{'Pypg_tup_seqscan':seqscan,
'Pypg_tup_idxfetch':idxfetch,
'Pypg_hours_since_last_vacuum':hours_since_vacuum,
'Pypg_hours_since_last_analyze':hours_since_analyze})
db_curs.close()
return pg_metrics
# Metric handler uses dictionary pg_metrics keys to return values from queries based on metric name
def metric_handler(name):
pg_metrics = pg_metrics_queries()
return int(pg_metrics[name])
def metric_init(params):
global pgdsn
pgdsn = "dbname=" + DB + " host=" + HOST + " user=" + USER + " port=" + PORT + " password=" + PASSWORD
descriptors = [
{'name':'Pypg_idle_sessions','units':'Sessions','slope':'both','description':'PG Idle Sessions'},
{'name':'Pypg_active_sessions','units':'Sessions','slope':'both','description':'PG Active Sessions'},
{'name':'Pypg_idle_in_transaction_sessions','units':'Sessions','slope':'both','description':'PG Idle In Transaction Sessions'},
{'name':'Pypg_waiting_sessions','units':'Sessions','slope':'both','description':'PG Waiting Sessions Blocked'},
{'name':'Pypg_longest_xact','units':'Seconds','slope':'both','description':'PG Longest Transaction in Seconds'},
{'name':'Pypg_longest_query','units':'Seconds','slope':'both','description':'PG Longest Query in Seconds'},
{'name':'Pypg_locks_accessexclusive','units':'Locks','slope':'both','description':'PG AccessExclusive Locks read write blocking'},
{'name':'Pypg_locks_otherexclusive','units':'Locks','slope':'both','description':'PG Exclusive Locks write blocking'},
{'name':'Pypg_locks_shared','units':'Locks','slope':'both','description':'PG Shared Locks NON blocking'},
{'name':'Pypg_bgwriter_checkpoints_timed','units':'checkpoints','slope':'positive','description':'PG scheduled checkpoints'},
{'name':'Pypg_bgwriter_checkpoints_req','units':'checkpoints','slope':'positive','description':'PG unscheduled checkpoints'},
{'name':'Pypg_bgwriter_checkpoint_write_time','units':'ms','slope':'positive','description':'PG time to write checkpoints to disk'},
{'name':'Pypg_bgwriter_checkpoint_sync_time','units':'checkpoints','slope':'positive','description':'PG time to sync checkpoints to disk'},
{'name':'Pypg_bgwriter_buffers_checkpoint','units':'buffers','slope':'positive','description':'PG number of buffers written during checkpoint'},
{'name':'Pypg_bgwriter_buffers_clean','units':'buffers','slope':'positive','description':'PG number of buffers written by the background writer'},
{'name':'Pypg_bgwriter_buffers_backend','units':'buffers','slope':'positive','description':'PG number of buffers written directly by a backend'},
{'name':'Pypg_bgwriter_buffers_alloc','units':'buffers','slope':'positive','description':'PG number of buffers allocated'},
{'name':'Pypg_transactions','units':'xacts','slope':'positive','description':'PG Transactions'},
{'name':'Pypg_transactions_per_sec','units':'xacts','slope':'positive','description':'PG Transactions per sec'},
{'name':'Pypg_inserts','units':'tuples','slope':'positive','description':'PG Inserts'},
{'name':'Pypg_inserts_per_sec','units':'tuples','slope':'positive','description':'PG Inserts per sec'},
{'name':'Pypg_updates','units':'tuples','slope':'positive','description':'PG Updates'},
{'name':'Pypg_updates_per_sec','units':'tuples','slope':'positive','description':'PG Updates per sec'},
{'name':'Pypg_deletes','units':'tuples','slope':'positive','description':'PG Deletes'},
{'name':'Pypg_deletes_per_sec','units':'tuples','slope':'positive','description':'PG Deletes per sec'},
{'name':'Pypg_reads','units':'tuples','slope':'positive','description':'PG Reads'},
{'name':'Pypg_reads_per_sec','units':'tuples','slope':'positive','description':'PG Reads per sec'},
{'name':'Pypg_blks_diskread','units':'blocks','slope':'positive','description':'PG Blocks Read from Disk'},
{'name':'Pypg_blks_diskread_per_sec','units':'blocks','slope':'positive','description':'PG Blocks Read from Disk per sec'},
{'name':'Pypg_blks_memread','units':'blocks','slope':'positive','description':'PG Blocks Read from Memory'},
{'name':'Pypg_blks_memread_per_sec','units':'blocks','slope':'positive','description':'PG Blocks Read from Memory per sec'},
{'name':'Pypg_tup_seqscan','units':'tuples','slope':'positive','description':'PG Tuples sequentially scanned'},
{'name':'Pypg_tup_idxfetch','units':'tuples','slope':'positive','description':'PG Tuples fetched from indexes'},
{'name':'Pypg_hours_since_last_vacuum','units':'hours','slope':'both','description':'PG hours since last vacuum'},
{'name':'Pypg_hours_since_last_analyze','units':'hours','slope':'both','description':'PG hours since last analyze'}]
for d in descriptors:
# Add default values to dictionary
d.update({'call_back': metric_handler, 'time_max': 90, 'value_type': 'uint', 'format': '%d', 'groups': 'Postgres'})
return descriptors
descriptors = metric_init({"host":"hostname_goes_here","port":"port_goes_here","dbname":"database_name_goes_here","username":"username_goes_here","password":"password_goes_here"})
message = "OK | "
try:
for d in descriptors:
v = d['call_back'](d['name'])
message += str(d['name'].lower()) + '=' + str(v) + ';;;; '
except Exception, e:
print "Plugin Failed!: %s" % e
sys.exit(2)
print message
sys.exit(0)