-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy path11_collect_query_snapshots.sql
More file actions
415 lines (368 loc) · 13.3 KB
/
11_collect_query_snapshots.sql
File metadata and controls
415 lines (368 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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
/*
Copyright 2026 Darling Data, LLC
https://www.erikdarling.com/
*/
SET ANSI_NULLS ON;
SET ANSI_PADDING ON;
SET ANSI_WARNINGS ON;
SET ARITHABORT ON;
SET CONCAT_NULL_YIELDS_NULL ON;
SET QUOTED_IDENTIFIER ON;
SET NUMERIC_ROUNDABORT OFF;
SET IMPLICIT_TRANSACTIONS OFF;
SET STATISTICS TIME, IO OFF;
GO
USE PerformanceMonitor;
GO
/*
Query snapshots collector
Uses sp_WhoIsActive to capture snapshots of currently executing queries
Creates daily tables (query_snapshots_YYYYMMDD) to manage data volume
Automatically creates views and manages retention
*/
IF OBJECT_ID(N'collect.query_snapshots_collector', N'P') IS NULL
BEGIN
EXECUTE(N'CREATE PROCEDURE collect.query_snapshots_collector AS RETURN 138;');
END;
GO
ALTER PROCEDURE
collect.query_snapshots_collector
(
@procedure_database sysname = NULL, /*Database where sp_WhoIsActive is installed (NULL = search PerformanceMonitor then master)*/
@debug bit = 0 /*Print debugging information*/
)
WITH RECOMPILE
AS
BEGIN
SET NOCOUNT ON;
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
DECLARE
@rows_collected bigint = 0,
@start_time datetime2(7) = SYSDATETIME(),
@retention_days integer,
@whoisactive_database sysname = NULL,
@destination_table sysname =
N'query_snapshots_' +
REPLACE
(
CONVERT
(
date,
SYSDATETIME()
),
N'-',
N''
),
@destination_schema sysname = N'collect',
@destination_database sysname = N'PerformanceMonitor',
@full_table_name sysname = N'',
@schema nvarchar(max) = N'',
@sql nvarchar(max) = N'',
@error_message nvarchar(4000);
/*
Get retention days from collection schedule
*/
SELECT
@retention_days = cs.retention_days
FROM config.collection_schedule AS cs
WHERE cs.collector_name = N'query_snapshots_collector';
/*
Default to 30 days if not configured
*/
IF @retention_days IS NULL
BEGIN
SET @retention_days = 30;
END;
BEGIN TRY
/*
Locate sp_WhoIsActive
If user provided a database name, check there
Otherwise search PerformanceMonitor first, then master
*/
IF @procedure_database IS NOT NULL
BEGIN
SET @sql = N'
IF OBJECT_ID(N''' + QUOTENAME(@procedure_database) + N'.dbo.sp_WhoIsActive'', N''P'') IS NOT NULL
BEGIN
SELECT @whoisactive_database = N''' + @procedure_database + N''';
END;';
EXECUTE sys.sp_executesql
@sql,
N'@whoisactive_database sysname OUTPUT',
@whoisactive_database = @whoisactive_database OUTPUT;
IF @whoisactive_database IS NULL
BEGIN
SET @error_message = N'sp_WhoIsActive not found in specified database ' + @procedure_database + N'. Please install it from https://github.com/amachanic/sp_whoisactive';
RAISERROR(@error_message, 16, 1);
RETURN;
END;
END;
ELSE
BEGIN
IF OBJECT_ID(N'PerformanceMonitor.dbo.sp_WhoIsActive', N'P') IS NOT NULL
BEGIN
SET @whoisactive_database = N'PerformanceMonitor';
END;
ELSE IF OBJECT_ID(N'master.dbo.sp_WhoIsActive', N'P') IS NOT NULL
BEGIN
SET @whoisactive_database = N'master';
END;
ELSE
BEGIN
SET @error_message = N'sp_WhoIsActive is not installed in PerformanceMonitor or master. Please install it from https://github.com/amachanic/sp_whoisactive';
RAISERROR(@error_message, 16, 1);
RETURN;
END;
END;
/*
Build full destination table name
*/
SET @full_table_name =
QUOTENAME(@destination_database) +
N'.' +
QUOTENAME(@destination_schema) +
N'.' +
QUOTENAME(@destination_table);
/*
Create the daily table if it doesn't exist
*/
IF OBJECT_ID(@full_table_name, N'U') IS NULL
BEGIN
IF @debug = 1
BEGIN
RAISERROR(N'Table %s does not exist, creating from sp_WhoIsActive schema', 0, 1, @full_table_name) WITH NOWAIT;
END;
/*
Call sp_WhoIsActive to get the table schema
*/
SET @sql = N'
EXECUTE ' + QUOTENAME(@whoisactive_database) + N'.dbo.sp_WhoIsActive
@get_transaction_info = 1,
@get_outer_command = 1,
@get_plans = 1,
@get_task_info = 2,
@get_additional_info = 1,
@find_block_leaders = 1,
@get_memory_info = 1,
@not_filter_type = ''database'',
@not_filter = ''PerformanceMonitor'',
@return_schema = 1,
@schema = @schema OUTPUT;';
EXECUTE sys.sp_executesql
@sql,
N'@schema nvarchar(max) OUTPUT',
@schema = @schema OUTPUT;
/*
Replace placeholder with actual table name
*/
SET @schema =
REPLACE
(
@schema,
N'<table_name>',
@full_table_name
);
EXECUTE sys.sp_executesql
@schema;
IF @debug = 1
BEGIN
RAISERROR(N'Created %s from sp_WhoIsActive schema', 0, 1, @full_table_name) WITH NOWAIT;
END;
/*
Recreate view immediately so new daily table is visible
*/
EXECUTE collect.query_snapshots_create_views;
END;
/*
Collect currently executing queries using sp_WhoIsActive
sp_WhoIsActive inserts by ordinal position, not column name.
If sp_WhoIsActive was updated and column order changed,
existing daily tables will have a schema mismatch.
Detect this and recreate the table if needed.
*/
SET @sql = N'
EXECUTE ' + QUOTENAME(@whoisactive_database) + N'.dbo.sp_WhoIsActive
@get_transaction_info = 1,
@get_outer_command = 1,
@get_plans = 1,
@get_task_info = 2,
@get_additional_info = 1,
@find_block_leaders = 1,
@get_memory_info = 1,
@destination_table = ''' + @full_table_name + N''';';
BEGIN TRY
EXECUTE sys.sp_executesql
@sql;
END TRY
BEGIN CATCH
IF ERROR_NUMBER() = 257 /*Implicit conversion = column order mismatch*/
BEGIN
IF @debug = 1
BEGIN
RAISERROR(N'Schema mismatch detected on %s, recreating table', 0, 1, @full_table_name) WITH NOWAIT;
END;
/*Drop the mismatched table*/
SET @sql =
N'DROP TABLE ' +
@full_table_name +
N';';
EXECUTE sys.sp_executesql
@sql;
/*Recreate from current sp_WhoIsActive schema*/
SET @schema = N'';
SET @sql = N'
EXECUTE ' + QUOTENAME(@whoisactive_database) + N'.dbo.sp_WhoIsActive
@get_transaction_info = 1,
@get_outer_command = 1,
@get_plans = 1,
@get_task_info = 2,
@get_additional_info = 1,
@find_block_leaders = 1,
@get_memory_info = 1,
@not_filter_type = ''database'',
@not_filter = ''PerformanceMonitor'',
@return_schema = 1,
@schema = @schema OUTPUT;';
EXECUTE sys.sp_executesql
@sql,
N'@schema nvarchar(max) OUTPUT',
@schema = @schema OUTPUT;
SET @schema =
REPLACE
(
@schema,
N'<table_name>',
@full_table_name
);
EXECUTE sys.sp_executesql
@schema;
/*Retry the insert*/
SET @sql = N'
EXECUTE ' + QUOTENAME(@whoisactive_database) + N'.dbo.sp_WhoIsActive
@get_transaction_info = 1,
@get_outer_command = 1,
@get_plans = 1,
@get_task_info = 2,
@get_additional_info = 1,
@find_block_leaders = 1,
@get_memory_info = 1,
@destination_table = ''' + @full_table_name + N''';';
EXECUTE sys.sp_executesql
@sql;
/*Recreate views for new schema*/
EXECUTE collect.query_snapshots_create_views;
END;
ELSE
BEGIN
THROW;
END;
END CATCH;
/*
Get row count from last insertion
*/
SET @sql = N'
SELECT
@rows_collected = COUNT_BIG(*)
FROM ' + @full_table_name + N' AS qs
WHERE qs.collection_time >= @start_time;';
EXECUTE sys.sp_executesql
@sql,
N'@rows_collected bigint OUTPUT, @start_time datetime2(7)',
@rows_collected = @rows_collected OUTPUT,
@start_time = @start_time;
/*
Run daily maintenance tasks (view recreation and retention cleanup)
Only run once per day - check if they've run in the last 24 hours
*/
DECLARE
@last_view_recreation datetime2(7),
@last_retention_cleanup datetime2(7);
SELECT TOP (1)
@last_view_recreation = cl.collection_time
FROM config.collection_log AS cl
WHERE cl.collector_name = N'query_snapshots_create_views'
AND cl.collection_status = N'SUCCESS'
ORDER BY
cl.collection_time DESC;
SELECT TOP (1)
@last_retention_cleanup = cl.collection_time
FROM config.collection_log AS cl
WHERE cl.collector_name = N'query_snapshots_retention'
AND cl.collection_status = N'SUCCESS'
ORDER BY
cl.collection_time DESC;
/*
Recreate views if not run in last 24 hours
*/
IF @last_view_recreation IS NULL OR @last_view_recreation < DATEADD(HOUR, -24, SYSDATETIME())
BEGIN
IF @debug = 1
BEGIN
DECLARE @last_view_msg nvarchar(30) = ISNULL(CONVERT(nvarchar(30), @last_view_recreation, 120), N'never');
RAISERROR(N'Running query_snapshots_create_views (last run: %s)', 0, 1, @last_view_msg) WITH NOWAIT;
END;
EXECUTE collect.query_snapshots_create_views;
END;
/*
Execute retention cleanup if not run in last 24 hours
*/
IF @last_retention_cleanup IS NULL OR @last_retention_cleanup < DATEADD(HOUR, -24, SYSDATETIME())
BEGIN
IF @debug = 1
BEGIN
DECLARE @last_retention_msg nvarchar(30) = ISNULL(CONVERT(nvarchar(30), @last_retention_cleanup, 120), N'never');
RAISERROR(N'Running query_snapshots_retention (last run: %s)', 0, 1, @last_retention_msg) WITH NOWAIT;
END;
EXECUTE collect.query_snapshots_retention;
END;
/*
Log successful collection
*/
INSERT INTO
config.collection_log
(
collector_name,
collection_status,
rows_collected,
duration_ms
)
VALUES
(
N'query_snapshots_collector',
N'SUCCESS',
@rows_collected,
DATEDIFF(MILLISECOND, @start_time, SYSDATETIME())
);
IF @debug = 1
BEGIN
RAISERROR(N'Collected %d query snapshots', 0, 1, @rows_collected) WITH NOWAIT;
END;
END TRY
BEGIN CATCH
SET @error_message = ERROR_MESSAGE();
/*
Log the error
*/
INSERT INTO
config.collection_log
(
collector_name,
collection_status,
duration_ms,
error_message
)
VALUES
(
N'query_snapshots_collector',
N'ERROR',
DATEDIFF(MILLISECOND, @start_time, SYSDATETIME()),
@error_message
);
RAISERROR(N'Error in query snapshots collector: %s', 16, 1, @error_message);
END CATCH;
END;
GO
PRINT 'Query snapshots collector created successfully';
PRINT 'Uses sp_WhoIsActive to capture comprehensive snapshots of currently executing queries';
PRINT 'Creates daily tables (query_snapshots_YYYYMMDD) and auto-manages views and retention';
GO