-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy path20_collect_file_io_stats.sql
More file actions
249 lines (228 loc) · 6.91 KB
/
20_collect_file_io_stats.sql
File metadata and controls
249 lines (228 loc) · 6.91 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
/*
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
/*
File I/O statistics collector
Collects raw cumulative I/O statistics from sys.dm_io_virtual_file_stats
Stores raw values for delta calculation - no pre-converted or pre-calculated metrics
*/
IF OBJECT_ID(N'collect.file_io_stats_collector', N'P') IS NULL
BEGIN
EXECUTE(N'CREATE PROCEDURE collect.file_io_stats_collector AS RETURN 138;');
END;
GO
ALTER PROCEDURE
collect.file_io_stats_collector
(
@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(),
@server_start_time datetime2(7) =
(
SELECT
osi.sqlserver_start_time
FROM sys.dm_os_sys_info AS osi
),
@error_message nvarchar(4000);
BEGIN TRY
BEGIN TRANSACTION;
/*
Ensure target table exists
*/
IF OBJECT_ID(N'collect.file_io_stats', N'U') IS NULL
BEGIN
/*
Log missing table before attempting to create
*/
INSERT INTO
config.collection_log
(
collection_time,
collector_name,
collection_status,
rows_collected,
duration_ms,
error_message
)
VALUES
(
@start_time,
N'file_io_stats_collector',
N'TABLE_MISSING',
0,
0,
N'Table collect.file_io_stats does not exist, calling ensure procedure'
);
/*
Call procedure to create table
*/
EXECUTE config.ensure_collection_table
@table_name = N'file_io_stats',
@debug = @debug;
/*
Verify table now exists
*/
IF OBJECT_ID(N'collect.file_io_stats', N'U') IS NULL
BEGIN
RAISERROR(N'Table collect.file_io_stats still missing after ensure procedure', 16, 1);
RETURN;
END;
END;
/*
Collect raw cumulative I/O statistics for all database files
Stores raw bytes and milliseconds - no pre-conversion to GB or averages
Delta framework will calculate rates and averages
*/
INSERT INTO
collect.file_io_stats
(
server_start_time,
database_id,
database_name,
file_id,
file_name,
file_type_desc,
physical_name,
size_on_disk_bytes,
num_of_reads,
num_of_bytes_read,
io_stall_read_ms,
num_of_writes,
num_of_bytes_written,
io_stall_write_ms,
io_stall_ms,
io_stall_queued_read_ms,
io_stall_queued_write_ms,
sample_ms
)
SELECT
server_start_time = @server_start_time,
database_id = vfs.database_id,
database_name =
ISNULL
(
d.name,
DB_NAME(vfs.database_id)
),
file_id = vfs.file_id,
file_name =
ISNULL
(
mf.name,
N'File_' + CONVERT(nvarchar(10), vfs.file_id)
),
file_type_desc =
ISNULL
(
mf.type_desc,
N'UNKNOWN'
),
physical_name = ISNULL(mf.physical_name, N''),
size_on_disk_bytes = vfs.size_on_disk_bytes,
num_of_reads = vfs.num_of_reads,
num_of_bytes_read = vfs.num_of_bytes_read,
io_stall_read_ms = vfs.io_stall_read_ms,
num_of_writes = vfs.num_of_writes,
num_of_bytes_written = vfs.num_of_bytes_written,
io_stall_write_ms = vfs.io_stall_write_ms,
io_stall_ms = vfs.io_stall,
io_stall_queued_read_ms = vfs.io_stall_queued_read_ms,
io_stall_queued_write_ms = vfs.io_stall_queued_write_ms,
sample_ms = vfs.sample_ms
FROM sys.dm_io_virtual_file_stats(NULL, NULL) AS vfs
LEFT JOIN sys.databases AS d
ON d.database_id = vfs.database_id
LEFT JOIN sys.master_files AS mf
ON mf.database_id = vfs.database_id
AND mf.file_id = vfs.file_id
WHERE (vfs.num_of_reads > 0 OR vfs.num_of_writes > 0)
AND vfs.database_id NOT IN
(
DB_ID(N'PerformanceMonitor'),
DB_ID(N'master'), /*1*/
DB_ID(N'model'), /*3*/
DB_ID(N'msdb') /*4*/
)
AND vfs.database_id < 32761 /*exclude resource database and contained AG system databases*/
OPTION(RECOMPILE);
SET @rows_collected = ROWCOUNT_BIG();
/*Calculate deltas for the newly inserted data*/
EXECUTE collect.calculate_deltas
@table_name = N'file_io_stats',
@debug = @debug;
/*
Log successful collection
*/
INSERT INTO
config.collection_log
(
collector_name,
collection_status,
rows_collected,
duration_ms
)
VALUES
(
N'file_io_stats_collector',
N'SUCCESS',
@rows_collected,
DATEDIFF(MILLISECOND, @start_time, SYSDATETIME())
);
IF @debug = 1
BEGIN
RAISERROR(N'Collected %d file I/O stats rows', 0, 1, @rows_collected) WITH NOWAIT;
END;
COMMIT TRANSACTION;
END TRY
BEGIN CATCH
IF @@TRANCOUNT > 0
BEGIN
ROLLBACK TRANSACTION;
END;
SET @error_message = ERROR_MESSAGE();
/*
Log the error
*/
INSERT INTO
config.collection_log
(
collector_name,
collection_status,
duration_ms,
error_message
)
VALUES
(
N'file_io_stats_collector',
N'ERROR',
DATEDIFF(MILLISECOND, @start_time, SYSDATETIME()),
@error_message
);
RAISERROR(N'Error in file I/O stats collector: %s', 16, 1, @error_message);
END CATCH;
END;
GO
PRINT 'File I/O stats collector created successfully';
PRINT 'Collects raw cumulative I/O metrics from sys.dm_io_virtual_file_stats';
PRINT 'Delta framework will calculate rates and averages from raw values';
GO