1drop procedure if exists check_instrument;
2create procedure check_instrument(in instr_name varchar(128))
3begin
4declare save_count_expected integer;
5declare count_expected integer;
6declare count_builtin_expected integer;
7declare count_global_expected integer;
8declare is_wait integer;
9declare is_wait_file integer;
10declare is_wait_socket integer;
11declare is_stage integer;
12declare is_statement integer;
13declare is_transaction integer;
14declare is_memory integer;
15declare is_wait_table integer;
16declare is_wait_file_table integer;
17declare is_wait_socket_table integer;
18declare is_stage_table integer;
19declare is_statement_table integer;
20declare is_transaction_table integer;
21declare is_memory_table integer;
22declare is_memory_global_table integer;
23declare pfs_table_name varchar(64);
24declare msg varchar(512);
25declare msg_detail varchar(512);
26declare cmd_1 varchar(512);
27declare cmd_2 varchar(512);
28declare done integer default 0;
29declare debug integer default 0;
30declare pfs_cursor CURSOR FOR
31select table_name from information_schema.tables
32where table_schema= 'performance_schema'
33      and table_name like "%_by_event_name%";
34declare continue handler for sqlstate '02000'
35    set done = 1;
36select (instr_name like "wait/%") or (instr_name like "idle") into is_wait;
37select (instr_name like "wait/io/file/%") into is_wait_file;
38select (instr_name like "wait/io/socket/%") into is_wait_socket;
39select (instr_name like "stage/%") into is_stage;
40select (instr_name like "statement/%") into is_statement;
41select (instr_name like "memory/%") into is_memory;
42select (instr_name like "transaction") into is_transaction;
43select instr_name, is_wait, is_wait_file, is_wait_socket, is_stage, is_statement, is_memory, is_transaction;
44select count(name)
45from performance_schema.setup_instruments
46where (name like (concat(instr_name, "%")))
47and (not name like "%/abstract/%")
48and (not name like "memory/performance_schema/%")
49into save_count_expected;
50select count(name)
51from performance_schema.setup_instruments
52where (name like (concat(instr_name, "%")))
53and (name like "memory/performance_schema/%")
54into count_builtin_expected;
55select count(name)
56from performance_schema.setup_instruments
57where (name like (concat(instr_name, "%")))
58and (name in (
59"memory/sql/buffered_logs",
60"memory/sql/sql_acl_mem",
61"memory/sql/sql_acl_memex",
62"memory/sql/acl_cache",
63"memory/sql/TABLE_SHARE::mem_root",
64"memory/sql/TABLE",
65"memory/sql/Query_cache",
66"memory/sql/native_functions",
67"memory/sql/Event_basic::mem_root",
68"memory/sql/root",
69"memory/sql/load_env_plugins",
70"memory/sql/plugin_ref",
71"memory/sql/plugin_mem_root",
72"memory/sql/plugin_bookmark",
73"memory/csv/TINA_SHARE",
74"memory/sql/tz_storage",
75"memory/sql/servers_cache",
76"memory/sql/udf_mem"
77    ))
78into count_global_expected;
79set cmd_1= "select count(*) from (select distinct event_name from performance_schema.";
80set cmd_2= concat(" where event_name like \"",
81                    instr_name,
82                    "%\") t into @count_actual");
83open pfs_cursor;
84repeat
85fetch pfs_cursor into pfs_table_name;
86if not done then
87select (pfs_table_name like "%waits%") into is_wait_table;
88select (pfs_table_name like "file_summary%") into is_wait_file_table;
89select (pfs_table_name like "socket_summary%") into is_wait_socket_table;
90select (pfs_table_name like "%stages%") into is_stage_table;
91select (pfs_table_name like "%statements%") into is_statement_table;
92select (pfs_table_name like "%memory%") into is_memory_table;
93select (pfs_table_name like "memory_summary_global_by_event_name") into is_memory_global_table;
94select (pfs_table_name like "%transaction%") into is_transaction_table;
95set count_expected = save_count_expected;
96if is_memory_global_table
97then
98set count_expected = save_count_expected + count_builtin_expected;
99end if;
100if is_memory_table = 1 and is_memory_global_table = 0
101then
102set count_expected = save_count_expected - count_global_expected;
103end if;
104select concat("Checking table ", pfs_table_name, " ...") as status;
105select concat(cmd_1, pfs_table_name, cmd_2) into @cmd;
106if debug = 1
107then
108select @cmd;
109end if;
110prepare stmt from @cmd;
111execute stmt;
112drop prepare stmt;
113set msg_detail= concat("table ", pfs_table_name,
114", instruments ", count_expected,
115", found ", @count_actual);
116if is_wait = 1
117then
118if is_wait_table = 1 and @count_actual <> count_expected
119then
120set msg= concat("Missing wait events: ", msg_detail);
121signal sqlstate '05000' set message_text= msg;
122end if;
123if is_wait_table = 0
124and is_wait_file_table = 0
125and is_wait_socket_table = 0
126and @count_actual <> 0
127then
128set msg= concat("Unexpected wait events: ", msg_detail);
129signal sqlstate '05000' set message_text= msg;
130end if;
131end if;
132if is_wait_file = 1
133then
134if is_wait_file_table = 1 and @count_actual <> count_expected
135then
136set msg= concat("Missing wait/io/file events: ", msg_detail);
137signal sqlstate '05000' set message_text= msg;
138end if;
139if is_wait_table = 0 and is_wait_file_table = 0 and @count_actual <> 0
140then
141set msg= concat("Unexpected wait/io/file events: ", msg_detail);
142signal sqlstate '05000' set message_text= msg;
143end if;
144end if;
145if is_wait_socket = 1
146then
147if is_wait_socket_table = 1 and @count_actual <> count_expected
148then
149set msg= concat("Missing wait/io/socket events: ", msg_detail);
150signal sqlstate '05000' set message_text= msg;
151end if;
152if is_wait_table = 0 and is_wait_socket_table = 0 and @count_actual <> 0
153then
154set msg= concat("Unexpected wait/io/socket events: ", msg_detail);
155signal sqlstate '05000' set message_text= msg;
156end if;
157end if;
158if is_stage = 1
159then
160if is_stage_table = 1 and @count_actual <> count_expected
161then
162set msg= concat("Missing stage events: ", msg_detail);
163signal sqlstate '05000' set message_text= msg;
164end if;
165if is_stage_table = 0 and @count_actual <> 0
166then
167set msg= concat("Unexpected stage events: ", msg_detail);
168signal sqlstate '05000' set message_text= msg;
169end if;
170end if;
171if is_statement = 1
172then
173if is_statement_table = 1 and @count_actual <> count_expected
174then
175set msg= concat("Missing statement events: ", msg_detail);
176signal sqlstate '05000' set message_text= msg;
177end if;
178if is_statement_table = 0 and @count_actual <> 0
179then
180set msg= concat("Unexpected statement events: ", msg_detail);
181signal sqlstate '05000' set message_text= msg;
182end if;
183end if;
184if is_memory = 1
185then
186if is_memory_table = 1 and @count_actual <> count_expected
187then
188set msg= concat("Missing memory events: ", msg_detail);
189signal sqlstate '05000' set message_text= msg;
190end if;
191if is_memory_table = 0 and @count_actual <> 0
192then
193set msg= concat("Unexpected memory events: ", msg_detail);
194signal sqlstate '05000' set message_text= msg;
195end if;
196end if;
197if is_transaction = 1
198then
199if is_transaction_table = 1 and @count_actual <> count_expected
200then
201set msg= concat("Missing transaction events: ", msg_detail);
202signal sqlstate '05000' set message_text= msg;
203end if;
204if is_transaction_table = 0 and @count_actual <> 0
205then
206set msg= concat("Unexpected transaction events: ", msg_detail);
207signal sqlstate '05000' set message_text= msg;
208end if;
209end if;
210end if;
211until done
212end repeat;
213close pfs_cursor;
214-- Dont want to return a 02000 NOT FOUND, there should be a better way
215signal sqlstate '01000' set message_text='Done', mysql_errno=12000;
216end
217$
218show global variables where
219`Variable_name` != "performance_schema_max_statement_classes" and
220`Variable_name` like "performance_schema%";
221Variable_name	Value
222performance_schema	ON
223performance_schema_accounts_size	100
224performance_schema_digests_size	200
225performance_schema_events_stages_history_long_size	1000
226performance_schema_events_stages_history_size	10
227performance_schema_events_statements_history_long_size	1000
228performance_schema_events_statements_history_size	10
229performance_schema_events_transactions_history_long_size	1000
230performance_schema_events_transactions_history_size	10
231performance_schema_events_waits_history_long_size	10000
232performance_schema_events_waits_history_size	10
233performance_schema_hosts_size	100
234performance_schema_max_cond_classes	80
235performance_schema_max_cond_instances	-1
236performance_schema_max_digest_length	1024
237performance_schema_max_file_classes	80
238performance_schema_max_file_handles	32768
239performance_schema_max_file_instances	-1
240performance_schema_max_index_stat	-1
241performance_schema_max_memory_classes	400
242performance_schema_max_metadata_locks	-1
243performance_schema_max_mutex_classes	250
244performance_schema_max_mutex_instances	-1
245performance_schema_max_prepared_statements_instances	-1
246performance_schema_max_program_instances	-1
247performance_schema_max_rwlock_classes	50
248performance_schema_max_rwlock_instances	-1
249performance_schema_max_socket_classes	10
250performance_schema_max_socket_instances	-1
251performance_schema_max_sql_text_length	1024
252performance_schema_max_stage_classes	150
253performance_schema_max_statement_stack	10
254performance_schema_max_table_handles	-1
255performance_schema_max_table_instances	-1
256performance_schema_max_table_lock_stat	-1
257performance_schema_max_thread_classes	50
258performance_schema_max_thread_instances	-1
259performance_schema_session_connect_attrs_size	2048
260performance_schema_setup_actors_size	100
261performance_schema_setup_objects_size	100
262performance_schema_users_size	100
263call check_instrument("wait/synch/mutex/");
264instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
265wait/synch/mutex/	1	0	0	0	0	0	0
266status
267Checking table events_stages_summary_by_account_by_event_name ...
268status
269Checking table events_stages_summary_by_host_by_event_name ...
270status
271Checking table events_stages_summary_by_thread_by_event_name ...
272status
273Checking table events_stages_summary_by_user_by_event_name ...
274status
275Checking table events_stages_summary_global_by_event_name ...
276status
277Checking table events_statements_summary_by_account_by_event_name ...
278status
279Checking table events_statements_summary_by_host_by_event_name ...
280status
281Checking table events_statements_summary_by_thread_by_event_name ...
282status
283Checking table events_statements_summary_by_user_by_event_name ...
284status
285Checking table events_statements_summary_global_by_event_name ...
286status
287Checking table events_transactions_summary_by_account_by_event_name ...
288status
289Checking table events_transactions_summary_by_host_by_event_name ...
290status
291Checking table events_transactions_summary_by_thread_by_event_name ...
292status
293Checking table events_transactions_summary_by_user_by_event_name ...
294status
295Checking table events_transactions_summary_global_by_event_name ...
296status
297Checking table events_waits_summary_by_account_by_event_name ...
298status
299Checking table events_waits_summary_by_host_by_event_name ...
300status
301Checking table events_waits_summary_by_thread_by_event_name ...
302status
303Checking table events_waits_summary_by_user_by_event_name ...
304status
305Checking table events_waits_summary_global_by_event_name ...
306status
307Checking table file_summary_by_event_name ...
308status
309Checking table memory_summary_by_account_by_event_name ...
310status
311Checking table memory_summary_by_host_by_event_name ...
312status
313Checking table memory_summary_by_thread_by_event_name ...
314status
315Checking table memory_summary_by_user_by_event_name ...
316status
317Checking table memory_summary_global_by_event_name ...
318status
319Checking table socket_summary_by_event_name ...
320Warnings:
321Warning	12000	Done
322call check_instrument("wait/synch/rwlock/");
323instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
324wait/synch/rwlock/	1	0	0	0	0	0	0
325status
326Checking table events_stages_summary_by_account_by_event_name ...
327status
328Checking table events_stages_summary_by_host_by_event_name ...
329status
330Checking table events_stages_summary_by_thread_by_event_name ...
331status
332Checking table events_stages_summary_by_user_by_event_name ...
333status
334Checking table events_stages_summary_global_by_event_name ...
335status
336Checking table events_statements_summary_by_account_by_event_name ...
337status
338Checking table events_statements_summary_by_host_by_event_name ...
339status
340Checking table events_statements_summary_by_thread_by_event_name ...
341status
342Checking table events_statements_summary_by_user_by_event_name ...
343status
344Checking table events_statements_summary_global_by_event_name ...
345status
346Checking table events_transactions_summary_by_account_by_event_name ...
347status
348Checking table events_transactions_summary_by_host_by_event_name ...
349status
350Checking table events_transactions_summary_by_thread_by_event_name ...
351status
352Checking table events_transactions_summary_by_user_by_event_name ...
353status
354Checking table events_transactions_summary_global_by_event_name ...
355status
356Checking table events_waits_summary_by_account_by_event_name ...
357status
358Checking table events_waits_summary_by_host_by_event_name ...
359status
360Checking table events_waits_summary_by_thread_by_event_name ...
361status
362Checking table events_waits_summary_by_user_by_event_name ...
363status
364Checking table events_waits_summary_global_by_event_name ...
365status
366Checking table file_summary_by_event_name ...
367status
368Checking table memory_summary_by_account_by_event_name ...
369status
370Checking table memory_summary_by_host_by_event_name ...
371status
372Checking table memory_summary_by_thread_by_event_name ...
373status
374Checking table memory_summary_by_user_by_event_name ...
375status
376Checking table memory_summary_global_by_event_name ...
377status
378Checking table socket_summary_by_event_name ...
379Warnings:
380Warning	12000	Done
381call check_instrument("wait/synch/sxlock/");
382instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
383wait/synch/sxlock/	1	0	0	0	0	0	0
384status
385Checking table events_stages_summary_by_account_by_event_name ...
386status
387Checking table events_stages_summary_by_host_by_event_name ...
388status
389Checking table events_stages_summary_by_thread_by_event_name ...
390status
391Checking table events_stages_summary_by_user_by_event_name ...
392status
393Checking table events_stages_summary_global_by_event_name ...
394status
395Checking table events_statements_summary_by_account_by_event_name ...
396status
397Checking table events_statements_summary_by_host_by_event_name ...
398status
399Checking table events_statements_summary_by_thread_by_event_name ...
400status
401Checking table events_statements_summary_by_user_by_event_name ...
402status
403Checking table events_statements_summary_global_by_event_name ...
404status
405Checking table events_transactions_summary_by_account_by_event_name ...
406status
407Checking table events_transactions_summary_by_host_by_event_name ...
408status
409Checking table events_transactions_summary_by_thread_by_event_name ...
410status
411Checking table events_transactions_summary_by_user_by_event_name ...
412status
413Checking table events_transactions_summary_global_by_event_name ...
414status
415Checking table events_waits_summary_by_account_by_event_name ...
416status
417Checking table events_waits_summary_by_host_by_event_name ...
418status
419Checking table events_waits_summary_by_thread_by_event_name ...
420status
421Checking table events_waits_summary_by_user_by_event_name ...
422status
423Checking table events_waits_summary_global_by_event_name ...
424status
425Checking table file_summary_by_event_name ...
426status
427Checking table memory_summary_by_account_by_event_name ...
428status
429Checking table memory_summary_by_host_by_event_name ...
430status
431Checking table memory_summary_by_thread_by_event_name ...
432status
433Checking table memory_summary_by_user_by_event_name ...
434status
435Checking table memory_summary_global_by_event_name ...
436status
437Checking table socket_summary_by_event_name ...
438Warnings:
439Warning	12000	Done
440call check_instrument("wait/synch/cond/");
441instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
442wait/synch/cond/	1	0	0	0	0	0	0
443status
444Checking table events_stages_summary_by_account_by_event_name ...
445status
446Checking table events_stages_summary_by_host_by_event_name ...
447status
448Checking table events_stages_summary_by_thread_by_event_name ...
449status
450Checking table events_stages_summary_by_user_by_event_name ...
451status
452Checking table events_stages_summary_global_by_event_name ...
453status
454Checking table events_statements_summary_by_account_by_event_name ...
455status
456Checking table events_statements_summary_by_host_by_event_name ...
457status
458Checking table events_statements_summary_by_thread_by_event_name ...
459status
460Checking table events_statements_summary_by_user_by_event_name ...
461status
462Checking table events_statements_summary_global_by_event_name ...
463status
464Checking table events_transactions_summary_by_account_by_event_name ...
465status
466Checking table events_transactions_summary_by_host_by_event_name ...
467status
468Checking table events_transactions_summary_by_thread_by_event_name ...
469status
470Checking table events_transactions_summary_by_user_by_event_name ...
471status
472Checking table events_transactions_summary_global_by_event_name ...
473status
474Checking table events_waits_summary_by_account_by_event_name ...
475status
476Checking table events_waits_summary_by_host_by_event_name ...
477status
478Checking table events_waits_summary_by_thread_by_event_name ...
479status
480Checking table events_waits_summary_by_user_by_event_name ...
481status
482Checking table events_waits_summary_global_by_event_name ...
483status
484Checking table file_summary_by_event_name ...
485status
486Checking table memory_summary_by_account_by_event_name ...
487status
488Checking table memory_summary_by_host_by_event_name ...
489status
490Checking table memory_summary_by_thread_by_event_name ...
491status
492Checking table memory_summary_by_user_by_event_name ...
493status
494Checking table memory_summary_global_by_event_name ...
495status
496Checking table socket_summary_by_event_name ...
497Warnings:
498Warning	12000	Done
499call check_instrument("wait/synch/");
500instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
501wait/synch/	1	0	0	0	0	0	0
502status
503Checking table events_stages_summary_by_account_by_event_name ...
504status
505Checking table events_stages_summary_by_host_by_event_name ...
506status
507Checking table events_stages_summary_by_thread_by_event_name ...
508status
509Checking table events_stages_summary_by_user_by_event_name ...
510status
511Checking table events_stages_summary_global_by_event_name ...
512status
513Checking table events_statements_summary_by_account_by_event_name ...
514status
515Checking table events_statements_summary_by_host_by_event_name ...
516status
517Checking table events_statements_summary_by_thread_by_event_name ...
518status
519Checking table events_statements_summary_by_user_by_event_name ...
520status
521Checking table events_statements_summary_global_by_event_name ...
522status
523Checking table events_transactions_summary_by_account_by_event_name ...
524status
525Checking table events_transactions_summary_by_host_by_event_name ...
526status
527Checking table events_transactions_summary_by_thread_by_event_name ...
528status
529Checking table events_transactions_summary_by_user_by_event_name ...
530status
531Checking table events_transactions_summary_global_by_event_name ...
532status
533Checking table events_waits_summary_by_account_by_event_name ...
534status
535Checking table events_waits_summary_by_host_by_event_name ...
536status
537Checking table events_waits_summary_by_thread_by_event_name ...
538status
539Checking table events_waits_summary_by_user_by_event_name ...
540status
541Checking table events_waits_summary_global_by_event_name ...
542status
543Checking table file_summary_by_event_name ...
544status
545Checking table memory_summary_by_account_by_event_name ...
546status
547Checking table memory_summary_by_host_by_event_name ...
548status
549Checking table memory_summary_by_thread_by_event_name ...
550status
551Checking table memory_summary_by_user_by_event_name ...
552status
553Checking table memory_summary_global_by_event_name ...
554status
555Checking table socket_summary_by_event_name ...
556Warnings:
557Warning	12000	Done
558call check_instrument("wait/io/file/");
559instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
560wait/io/file/	1	1	0	0	0	0	0
561status
562Checking table events_stages_summary_by_account_by_event_name ...
563status
564Checking table events_stages_summary_by_host_by_event_name ...
565status
566Checking table events_stages_summary_by_thread_by_event_name ...
567status
568Checking table events_stages_summary_by_user_by_event_name ...
569status
570Checking table events_stages_summary_global_by_event_name ...
571status
572Checking table events_statements_summary_by_account_by_event_name ...
573status
574Checking table events_statements_summary_by_host_by_event_name ...
575status
576Checking table events_statements_summary_by_thread_by_event_name ...
577status
578Checking table events_statements_summary_by_user_by_event_name ...
579status
580Checking table events_statements_summary_global_by_event_name ...
581status
582Checking table events_transactions_summary_by_account_by_event_name ...
583status
584Checking table events_transactions_summary_by_host_by_event_name ...
585status
586Checking table events_transactions_summary_by_thread_by_event_name ...
587status
588Checking table events_transactions_summary_by_user_by_event_name ...
589status
590Checking table events_transactions_summary_global_by_event_name ...
591status
592Checking table events_waits_summary_by_account_by_event_name ...
593status
594Checking table events_waits_summary_by_host_by_event_name ...
595status
596Checking table events_waits_summary_by_thread_by_event_name ...
597status
598Checking table events_waits_summary_by_user_by_event_name ...
599status
600Checking table events_waits_summary_global_by_event_name ...
601status
602Checking table file_summary_by_event_name ...
603status
604Checking table memory_summary_by_account_by_event_name ...
605status
606Checking table memory_summary_by_host_by_event_name ...
607status
608Checking table memory_summary_by_thread_by_event_name ...
609status
610Checking table memory_summary_by_user_by_event_name ...
611status
612Checking table memory_summary_global_by_event_name ...
613status
614Checking table socket_summary_by_event_name ...
615Warnings:
616Warning	12000	Done
617call check_instrument("wait/io/socket/");
618instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
619wait/io/socket/	1	0	1	0	0	0	0
620status
621Checking table events_stages_summary_by_account_by_event_name ...
622status
623Checking table events_stages_summary_by_host_by_event_name ...
624status
625Checking table events_stages_summary_by_thread_by_event_name ...
626status
627Checking table events_stages_summary_by_user_by_event_name ...
628status
629Checking table events_stages_summary_global_by_event_name ...
630status
631Checking table events_statements_summary_by_account_by_event_name ...
632status
633Checking table events_statements_summary_by_host_by_event_name ...
634status
635Checking table events_statements_summary_by_thread_by_event_name ...
636status
637Checking table events_statements_summary_by_user_by_event_name ...
638status
639Checking table events_statements_summary_global_by_event_name ...
640status
641Checking table events_transactions_summary_by_account_by_event_name ...
642status
643Checking table events_transactions_summary_by_host_by_event_name ...
644status
645Checking table events_transactions_summary_by_thread_by_event_name ...
646status
647Checking table events_transactions_summary_by_user_by_event_name ...
648status
649Checking table events_transactions_summary_global_by_event_name ...
650status
651Checking table events_waits_summary_by_account_by_event_name ...
652status
653Checking table events_waits_summary_by_host_by_event_name ...
654status
655Checking table events_waits_summary_by_thread_by_event_name ...
656status
657Checking table events_waits_summary_by_user_by_event_name ...
658status
659Checking table events_waits_summary_global_by_event_name ...
660status
661Checking table file_summary_by_event_name ...
662status
663Checking table memory_summary_by_account_by_event_name ...
664status
665Checking table memory_summary_by_host_by_event_name ...
666status
667Checking table memory_summary_by_thread_by_event_name ...
668status
669Checking table memory_summary_by_user_by_event_name ...
670status
671Checking table memory_summary_global_by_event_name ...
672status
673Checking table socket_summary_by_event_name ...
674Warnings:
675Warning	12000	Done
676call check_instrument("wait/io/table/");
677instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
678wait/io/table/	1	0	0	0	0	0	0
679status
680Checking table events_stages_summary_by_account_by_event_name ...
681status
682Checking table events_stages_summary_by_host_by_event_name ...
683status
684Checking table events_stages_summary_by_thread_by_event_name ...
685status
686Checking table events_stages_summary_by_user_by_event_name ...
687status
688Checking table events_stages_summary_global_by_event_name ...
689status
690Checking table events_statements_summary_by_account_by_event_name ...
691status
692Checking table events_statements_summary_by_host_by_event_name ...
693status
694Checking table events_statements_summary_by_thread_by_event_name ...
695status
696Checking table events_statements_summary_by_user_by_event_name ...
697status
698Checking table events_statements_summary_global_by_event_name ...
699status
700Checking table events_transactions_summary_by_account_by_event_name ...
701status
702Checking table events_transactions_summary_by_host_by_event_name ...
703status
704Checking table events_transactions_summary_by_thread_by_event_name ...
705status
706Checking table events_transactions_summary_by_user_by_event_name ...
707status
708Checking table events_transactions_summary_global_by_event_name ...
709status
710Checking table events_waits_summary_by_account_by_event_name ...
711status
712Checking table events_waits_summary_by_host_by_event_name ...
713status
714Checking table events_waits_summary_by_thread_by_event_name ...
715status
716Checking table events_waits_summary_by_user_by_event_name ...
717status
718Checking table events_waits_summary_global_by_event_name ...
719status
720Checking table file_summary_by_event_name ...
721status
722Checking table memory_summary_by_account_by_event_name ...
723status
724Checking table memory_summary_by_host_by_event_name ...
725status
726Checking table memory_summary_by_thread_by_event_name ...
727status
728Checking table memory_summary_by_user_by_event_name ...
729status
730Checking table memory_summary_global_by_event_name ...
731status
732Checking table socket_summary_by_event_name ...
733Warnings:
734Warning	12000	Done
735call check_instrument("wait/io/");
736instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
737wait/io/	1	0	0	0	0	0	0
738status
739Checking table events_stages_summary_by_account_by_event_name ...
740status
741Checking table events_stages_summary_by_host_by_event_name ...
742status
743Checking table events_stages_summary_by_thread_by_event_name ...
744status
745Checking table events_stages_summary_by_user_by_event_name ...
746status
747Checking table events_stages_summary_global_by_event_name ...
748status
749Checking table events_statements_summary_by_account_by_event_name ...
750status
751Checking table events_statements_summary_by_host_by_event_name ...
752status
753Checking table events_statements_summary_by_thread_by_event_name ...
754status
755Checking table events_statements_summary_by_user_by_event_name ...
756status
757Checking table events_statements_summary_global_by_event_name ...
758status
759Checking table events_transactions_summary_by_account_by_event_name ...
760status
761Checking table events_transactions_summary_by_host_by_event_name ...
762status
763Checking table events_transactions_summary_by_thread_by_event_name ...
764status
765Checking table events_transactions_summary_by_user_by_event_name ...
766status
767Checking table events_transactions_summary_global_by_event_name ...
768status
769Checking table events_waits_summary_by_account_by_event_name ...
770status
771Checking table events_waits_summary_by_host_by_event_name ...
772status
773Checking table events_waits_summary_by_thread_by_event_name ...
774status
775Checking table events_waits_summary_by_user_by_event_name ...
776status
777Checking table events_waits_summary_global_by_event_name ...
778status
779Checking table file_summary_by_event_name ...
780status
781Checking table memory_summary_by_account_by_event_name ...
782status
783Checking table memory_summary_by_host_by_event_name ...
784status
785Checking table memory_summary_by_thread_by_event_name ...
786status
787Checking table memory_summary_by_user_by_event_name ...
788status
789Checking table memory_summary_global_by_event_name ...
790status
791Checking table socket_summary_by_event_name ...
792Warnings:
793Warning	12000	Done
794call check_instrument("wait/lock/table/");
795instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
796wait/lock/table/	1	0	0	0	0	0	0
797status
798Checking table events_stages_summary_by_account_by_event_name ...
799status
800Checking table events_stages_summary_by_host_by_event_name ...
801status
802Checking table events_stages_summary_by_thread_by_event_name ...
803status
804Checking table events_stages_summary_by_user_by_event_name ...
805status
806Checking table events_stages_summary_global_by_event_name ...
807status
808Checking table events_statements_summary_by_account_by_event_name ...
809status
810Checking table events_statements_summary_by_host_by_event_name ...
811status
812Checking table events_statements_summary_by_thread_by_event_name ...
813status
814Checking table events_statements_summary_by_user_by_event_name ...
815status
816Checking table events_statements_summary_global_by_event_name ...
817status
818Checking table events_transactions_summary_by_account_by_event_name ...
819status
820Checking table events_transactions_summary_by_host_by_event_name ...
821status
822Checking table events_transactions_summary_by_thread_by_event_name ...
823status
824Checking table events_transactions_summary_by_user_by_event_name ...
825status
826Checking table events_transactions_summary_global_by_event_name ...
827status
828Checking table events_waits_summary_by_account_by_event_name ...
829status
830Checking table events_waits_summary_by_host_by_event_name ...
831status
832Checking table events_waits_summary_by_thread_by_event_name ...
833status
834Checking table events_waits_summary_by_user_by_event_name ...
835status
836Checking table events_waits_summary_global_by_event_name ...
837status
838Checking table file_summary_by_event_name ...
839status
840Checking table memory_summary_by_account_by_event_name ...
841status
842Checking table memory_summary_by_host_by_event_name ...
843status
844Checking table memory_summary_by_thread_by_event_name ...
845status
846Checking table memory_summary_by_user_by_event_name ...
847status
848Checking table memory_summary_global_by_event_name ...
849status
850Checking table socket_summary_by_event_name ...
851Warnings:
852Warning	12000	Done
853call check_instrument("wait/lock/");
854instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
855wait/lock/	1	0	0	0	0	0	0
856status
857Checking table events_stages_summary_by_account_by_event_name ...
858status
859Checking table events_stages_summary_by_host_by_event_name ...
860status
861Checking table events_stages_summary_by_thread_by_event_name ...
862status
863Checking table events_stages_summary_by_user_by_event_name ...
864status
865Checking table events_stages_summary_global_by_event_name ...
866status
867Checking table events_statements_summary_by_account_by_event_name ...
868status
869Checking table events_statements_summary_by_host_by_event_name ...
870status
871Checking table events_statements_summary_by_thread_by_event_name ...
872status
873Checking table events_statements_summary_by_user_by_event_name ...
874status
875Checking table events_statements_summary_global_by_event_name ...
876status
877Checking table events_transactions_summary_by_account_by_event_name ...
878status
879Checking table events_transactions_summary_by_host_by_event_name ...
880status
881Checking table events_transactions_summary_by_thread_by_event_name ...
882status
883Checking table events_transactions_summary_by_user_by_event_name ...
884status
885Checking table events_transactions_summary_global_by_event_name ...
886status
887Checking table events_waits_summary_by_account_by_event_name ...
888status
889Checking table events_waits_summary_by_host_by_event_name ...
890status
891Checking table events_waits_summary_by_thread_by_event_name ...
892status
893Checking table events_waits_summary_by_user_by_event_name ...
894status
895Checking table events_waits_summary_global_by_event_name ...
896status
897Checking table file_summary_by_event_name ...
898status
899Checking table memory_summary_by_account_by_event_name ...
900status
901Checking table memory_summary_by_host_by_event_name ...
902status
903Checking table memory_summary_by_thread_by_event_name ...
904status
905Checking table memory_summary_by_user_by_event_name ...
906status
907Checking table memory_summary_global_by_event_name ...
908status
909Checking table socket_summary_by_event_name ...
910Warnings:
911Warning	12000	Done
912call check_instrument("wait/");
913instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
914wait/	1	0	0	0	0	0	0
915status
916Checking table events_stages_summary_by_account_by_event_name ...
917status
918Checking table events_stages_summary_by_host_by_event_name ...
919status
920Checking table events_stages_summary_by_thread_by_event_name ...
921status
922Checking table events_stages_summary_by_user_by_event_name ...
923status
924Checking table events_stages_summary_global_by_event_name ...
925status
926Checking table events_statements_summary_by_account_by_event_name ...
927status
928Checking table events_statements_summary_by_host_by_event_name ...
929status
930Checking table events_statements_summary_by_thread_by_event_name ...
931status
932Checking table events_statements_summary_by_user_by_event_name ...
933status
934Checking table events_statements_summary_global_by_event_name ...
935status
936Checking table events_transactions_summary_by_account_by_event_name ...
937status
938Checking table events_transactions_summary_by_host_by_event_name ...
939status
940Checking table events_transactions_summary_by_thread_by_event_name ...
941status
942Checking table events_transactions_summary_by_user_by_event_name ...
943status
944Checking table events_transactions_summary_global_by_event_name ...
945status
946Checking table events_waits_summary_by_account_by_event_name ...
947status
948Checking table events_waits_summary_by_host_by_event_name ...
949status
950Checking table events_waits_summary_by_thread_by_event_name ...
951status
952Checking table events_waits_summary_by_user_by_event_name ...
953status
954Checking table events_waits_summary_global_by_event_name ...
955status
956Checking table file_summary_by_event_name ...
957status
958Checking table memory_summary_by_account_by_event_name ...
959status
960Checking table memory_summary_by_host_by_event_name ...
961status
962Checking table memory_summary_by_thread_by_event_name ...
963status
964Checking table memory_summary_by_user_by_event_name ...
965status
966Checking table memory_summary_global_by_event_name ...
967status
968Checking table socket_summary_by_event_name ...
969Warnings:
970Warning	12000	Done
971call check_instrument("stage/");
972instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
973stage/	0	0	0	1	0	0	0
974status
975Checking table events_stages_summary_by_account_by_event_name ...
976status
977Checking table events_stages_summary_by_host_by_event_name ...
978status
979Checking table events_stages_summary_by_thread_by_event_name ...
980status
981Checking table events_stages_summary_by_user_by_event_name ...
982status
983Checking table events_stages_summary_global_by_event_name ...
984status
985Checking table events_statements_summary_by_account_by_event_name ...
986status
987Checking table events_statements_summary_by_host_by_event_name ...
988status
989Checking table events_statements_summary_by_thread_by_event_name ...
990status
991Checking table events_statements_summary_by_user_by_event_name ...
992status
993Checking table events_statements_summary_global_by_event_name ...
994status
995Checking table events_transactions_summary_by_account_by_event_name ...
996status
997Checking table events_transactions_summary_by_host_by_event_name ...
998status
999Checking table events_transactions_summary_by_thread_by_event_name ...
1000status
1001Checking table events_transactions_summary_by_user_by_event_name ...
1002status
1003Checking table events_transactions_summary_global_by_event_name ...
1004status
1005Checking table events_waits_summary_by_account_by_event_name ...
1006status
1007Checking table events_waits_summary_by_host_by_event_name ...
1008status
1009Checking table events_waits_summary_by_thread_by_event_name ...
1010status
1011Checking table events_waits_summary_by_user_by_event_name ...
1012status
1013Checking table events_waits_summary_global_by_event_name ...
1014status
1015Checking table file_summary_by_event_name ...
1016status
1017Checking table memory_summary_by_account_by_event_name ...
1018status
1019Checking table memory_summary_by_host_by_event_name ...
1020status
1021Checking table memory_summary_by_thread_by_event_name ...
1022status
1023Checking table memory_summary_by_user_by_event_name ...
1024status
1025Checking table memory_summary_global_by_event_name ...
1026status
1027Checking table socket_summary_by_event_name ...
1028Warnings:
1029Warning	12000	Done
1030call check_instrument("statement/com/");
1031instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
1032statement/com/	0	0	0	0	1	0	0
1033status
1034Checking table events_stages_summary_by_account_by_event_name ...
1035status
1036Checking table events_stages_summary_by_host_by_event_name ...
1037status
1038Checking table events_stages_summary_by_thread_by_event_name ...
1039status
1040Checking table events_stages_summary_by_user_by_event_name ...
1041status
1042Checking table events_stages_summary_global_by_event_name ...
1043status
1044Checking table events_statements_summary_by_account_by_event_name ...
1045status
1046Checking table events_statements_summary_by_host_by_event_name ...
1047status
1048Checking table events_statements_summary_by_thread_by_event_name ...
1049status
1050Checking table events_statements_summary_by_user_by_event_name ...
1051status
1052Checking table events_statements_summary_global_by_event_name ...
1053status
1054Checking table events_transactions_summary_by_account_by_event_name ...
1055status
1056Checking table events_transactions_summary_by_host_by_event_name ...
1057status
1058Checking table events_transactions_summary_by_thread_by_event_name ...
1059status
1060Checking table events_transactions_summary_by_user_by_event_name ...
1061status
1062Checking table events_transactions_summary_global_by_event_name ...
1063status
1064Checking table events_waits_summary_by_account_by_event_name ...
1065status
1066Checking table events_waits_summary_by_host_by_event_name ...
1067status
1068Checking table events_waits_summary_by_thread_by_event_name ...
1069status
1070Checking table events_waits_summary_by_user_by_event_name ...
1071status
1072Checking table events_waits_summary_global_by_event_name ...
1073status
1074Checking table file_summary_by_event_name ...
1075status
1076Checking table memory_summary_by_account_by_event_name ...
1077status
1078Checking table memory_summary_by_host_by_event_name ...
1079status
1080Checking table memory_summary_by_thread_by_event_name ...
1081status
1082Checking table memory_summary_by_user_by_event_name ...
1083status
1084Checking table memory_summary_global_by_event_name ...
1085status
1086Checking table socket_summary_by_event_name ...
1087Warnings:
1088Warning	12000	Done
1089call check_instrument("statement/sql/");
1090instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
1091statement/sql/	0	0	0	0	1	0	0
1092status
1093Checking table events_stages_summary_by_account_by_event_name ...
1094status
1095Checking table events_stages_summary_by_host_by_event_name ...
1096status
1097Checking table events_stages_summary_by_thread_by_event_name ...
1098status
1099Checking table events_stages_summary_by_user_by_event_name ...
1100status
1101Checking table events_stages_summary_global_by_event_name ...
1102status
1103Checking table events_statements_summary_by_account_by_event_name ...
1104status
1105Checking table events_statements_summary_by_host_by_event_name ...
1106status
1107Checking table events_statements_summary_by_thread_by_event_name ...
1108status
1109Checking table events_statements_summary_by_user_by_event_name ...
1110status
1111Checking table events_statements_summary_global_by_event_name ...
1112status
1113Checking table events_transactions_summary_by_account_by_event_name ...
1114status
1115Checking table events_transactions_summary_by_host_by_event_name ...
1116status
1117Checking table events_transactions_summary_by_thread_by_event_name ...
1118status
1119Checking table events_transactions_summary_by_user_by_event_name ...
1120status
1121Checking table events_transactions_summary_global_by_event_name ...
1122status
1123Checking table events_waits_summary_by_account_by_event_name ...
1124status
1125Checking table events_waits_summary_by_host_by_event_name ...
1126status
1127Checking table events_waits_summary_by_thread_by_event_name ...
1128status
1129Checking table events_waits_summary_by_user_by_event_name ...
1130status
1131Checking table events_waits_summary_global_by_event_name ...
1132status
1133Checking table file_summary_by_event_name ...
1134status
1135Checking table memory_summary_by_account_by_event_name ...
1136status
1137Checking table memory_summary_by_host_by_event_name ...
1138status
1139Checking table memory_summary_by_thread_by_event_name ...
1140status
1141Checking table memory_summary_by_user_by_event_name ...
1142status
1143Checking table memory_summary_global_by_event_name ...
1144status
1145Checking table socket_summary_by_event_name ...
1146Warnings:
1147Warning	12000	Done
1148call check_instrument("statement/abstract/");
1149instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
1150statement/abstract/	0	0	0	0	1	0	0
1151status
1152Checking table events_stages_summary_by_account_by_event_name ...
1153status
1154Checking table events_stages_summary_by_host_by_event_name ...
1155status
1156Checking table events_stages_summary_by_thread_by_event_name ...
1157status
1158Checking table events_stages_summary_by_user_by_event_name ...
1159status
1160Checking table events_stages_summary_global_by_event_name ...
1161status
1162Checking table events_statements_summary_by_account_by_event_name ...
1163status
1164Checking table events_statements_summary_by_host_by_event_name ...
1165status
1166Checking table events_statements_summary_by_thread_by_event_name ...
1167status
1168Checking table events_statements_summary_by_user_by_event_name ...
1169status
1170Checking table events_statements_summary_global_by_event_name ...
1171status
1172Checking table events_transactions_summary_by_account_by_event_name ...
1173status
1174Checking table events_transactions_summary_by_host_by_event_name ...
1175status
1176Checking table events_transactions_summary_by_thread_by_event_name ...
1177status
1178Checking table events_transactions_summary_by_user_by_event_name ...
1179status
1180Checking table events_transactions_summary_global_by_event_name ...
1181status
1182Checking table events_waits_summary_by_account_by_event_name ...
1183status
1184Checking table events_waits_summary_by_host_by_event_name ...
1185status
1186Checking table events_waits_summary_by_thread_by_event_name ...
1187status
1188Checking table events_waits_summary_by_user_by_event_name ...
1189status
1190Checking table events_waits_summary_global_by_event_name ...
1191status
1192Checking table file_summary_by_event_name ...
1193status
1194Checking table memory_summary_by_account_by_event_name ...
1195status
1196Checking table memory_summary_by_host_by_event_name ...
1197status
1198Checking table memory_summary_by_thread_by_event_name ...
1199status
1200Checking table memory_summary_by_user_by_event_name ...
1201status
1202Checking table memory_summary_global_by_event_name ...
1203status
1204Checking table socket_summary_by_event_name ...
1205Warnings:
1206Warning	12000	Done
1207call check_instrument("statement/");
1208instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
1209statement/	0	0	0	0	1	0	0
1210status
1211Checking table events_stages_summary_by_account_by_event_name ...
1212status
1213Checking table events_stages_summary_by_host_by_event_name ...
1214status
1215Checking table events_stages_summary_by_thread_by_event_name ...
1216status
1217Checking table events_stages_summary_by_user_by_event_name ...
1218status
1219Checking table events_stages_summary_global_by_event_name ...
1220status
1221Checking table events_statements_summary_by_account_by_event_name ...
1222status
1223Checking table events_statements_summary_by_host_by_event_name ...
1224status
1225Checking table events_statements_summary_by_thread_by_event_name ...
1226status
1227Checking table events_statements_summary_by_user_by_event_name ...
1228status
1229Checking table events_statements_summary_global_by_event_name ...
1230status
1231Checking table events_transactions_summary_by_account_by_event_name ...
1232status
1233Checking table events_transactions_summary_by_host_by_event_name ...
1234status
1235Checking table events_transactions_summary_by_thread_by_event_name ...
1236status
1237Checking table events_transactions_summary_by_user_by_event_name ...
1238status
1239Checking table events_transactions_summary_global_by_event_name ...
1240status
1241Checking table events_waits_summary_by_account_by_event_name ...
1242status
1243Checking table events_waits_summary_by_host_by_event_name ...
1244status
1245Checking table events_waits_summary_by_thread_by_event_name ...
1246status
1247Checking table events_waits_summary_by_user_by_event_name ...
1248status
1249Checking table events_waits_summary_global_by_event_name ...
1250status
1251Checking table file_summary_by_event_name ...
1252status
1253Checking table memory_summary_by_account_by_event_name ...
1254status
1255Checking table memory_summary_by_host_by_event_name ...
1256status
1257Checking table memory_summary_by_thread_by_event_name ...
1258status
1259Checking table memory_summary_by_user_by_event_name ...
1260status
1261Checking table memory_summary_global_by_event_name ...
1262status
1263Checking table socket_summary_by_event_name ...
1264Warnings:
1265Warning	12000	Done
1266call check_instrument("idle");
1267instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
1268idle	1	0	0	0	0	0	0
1269status
1270Checking table events_stages_summary_by_account_by_event_name ...
1271status
1272Checking table events_stages_summary_by_host_by_event_name ...
1273status
1274Checking table events_stages_summary_by_thread_by_event_name ...
1275status
1276Checking table events_stages_summary_by_user_by_event_name ...
1277status
1278Checking table events_stages_summary_global_by_event_name ...
1279status
1280Checking table events_statements_summary_by_account_by_event_name ...
1281status
1282Checking table events_statements_summary_by_host_by_event_name ...
1283status
1284Checking table events_statements_summary_by_thread_by_event_name ...
1285status
1286Checking table events_statements_summary_by_user_by_event_name ...
1287status
1288Checking table events_statements_summary_global_by_event_name ...
1289status
1290Checking table events_transactions_summary_by_account_by_event_name ...
1291status
1292Checking table events_transactions_summary_by_host_by_event_name ...
1293status
1294Checking table events_transactions_summary_by_thread_by_event_name ...
1295status
1296Checking table events_transactions_summary_by_user_by_event_name ...
1297status
1298Checking table events_transactions_summary_global_by_event_name ...
1299status
1300Checking table events_waits_summary_by_account_by_event_name ...
1301status
1302Checking table events_waits_summary_by_host_by_event_name ...
1303status
1304Checking table events_waits_summary_by_thread_by_event_name ...
1305status
1306Checking table events_waits_summary_by_user_by_event_name ...
1307status
1308Checking table events_waits_summary_global_by_event_name ...
1309status
1310Checking table file_summary_by_event_name ...
1311status
1312Checking table memory_summary_by_account_by_event_name ...
1313status
1314Checking table memory_summary_by_host_by_event_name ...
1315status
1316Checking table memory_summary_by_thread_by_event_name ...
1317status
1318Checking table memory_summary_by_user_by_event_name ...
1319status
1320Checking table memory_summary_global_by_event_name ...
1321status
1322Checking table socket_summary_by_event_name ...
1323Warnings:
1324Warning	12000	Done
1325call check_instrument("memory/");
1326instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
1327memory/	0	0	0	0	0	1	0
1328status
1329Checking table events_stages_summary_by_account_by_event_name ...
1330status
1331Checking table events_stages_summary_by_host_by_event_name ...
1332status
1333Checking table events_stages_summary_by_thread_by_event_name ...
1334status
1335Checking table events_stages_summary_by_user_by_event_name ...
1336status
1337Checking table events_stages_summary_global_by_event_name ...
1338status
1339Checking table events_statements_summary_by_account_by_event_name ...
1340status
1341Checking table events_statements_summary_by_host_by_event_name ...
1342status
1343Checking table events_statements_summary_by_thread_by_event_name ...
1344status
1345Checking table events_statements_summary_by_user_by_event_name ...
1346status
1347Checking table events_statements_summary_global_by_event_name ...
1348status
1349Checking table events_transactions_summary_by_account_by_event_name ...
1350status
1351Checking table events_transactions_summary_by_host_by_event_name ...
1352status
1353Checking table events_transactions_summary_by_thread_by_event_name ...
1354status
1355Checking table events_transactions_summary_by_user_by_event_name ...
1356status
1357Checking table events_transactions_summary_global_by_event_name ...
1358status
1359Checking table events_waits_summary_by_account_by_event_name ...
1360status
1361Checking table events_waits_summary_by_host_by_event_name ...
1362status
1363Checking table events_waits_summary_by_thread_by_event_name ...
1364status
1365Checking table events_waits_summary_by_user_by_event_name ...
1366status
1367Checking table events_waits_summary_global_by_event_name ...
1368status
1369Checking table file_summary_by_event_name ...
1370status
1371Checking table memory_summary_by_account_by_event_name ...
1372status
1373Checking table memory_summary_by_host_by_event_name ...
1374status
1375Checking table memory_summary_by_thread_by_event_name ...
1376status
1377Checking table memory_summary_by_user_by_event_name ...
1378status
1379Checking table memory_summary_global_by_event_name ...
1380status
1381Checking table socket_summary_by_event_name ...
1382Warnings:
1383Warning	12000	Done
1384call check_instrument("memory/performance_schema/");
1385instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
1386memory/performance_schema/	0	0	0	0	0	1	0
1387status
1388Checking table events_stages_summary_by_account_by_event_name ...
1389status
1390Checking table events_stages_summary_by_host_by_event_name ...
1391status
1392Checking table events_stages_summary_by_thread_by_event_name ...
1393status
1394Checking table events_stages_summary_by_user_by_event_name ...
1395status
1396Checking table events_stages_summary_global_by_event_name ...
1397status
1398Checking table events_statements_summary_by_account_by_event_name ...
1399status
1400Checking table events_statements_summary_by_host_by_event_name ...
1401status
1402Checking table events_statements_summary_by_thread_by_event_name ...
1403status
1404Checking table events_statements_summary_by_user_by_event_name ...
1405status
1406Checking table events_statements_summary_global_by_event_name ...
1407status
1408Checking table events_transactions_summary_by_account_by_event_name ...
1409status
1410Checking table events_transactions_summary_by_host_by_event_name ...
1411status
1412Checking table events_transactions_summary_by_thread_by_event_name ...
1413status
1414Checking table events_transactions_summary_by_user_by_event_name ...
1415status
1416Checking table events_transactions_summary_global_by_event_name ...
1417status
1418Checking table events_waits_summary_by_account_by_event_name ...
1419status
1420Checking table events_waits_summary_by_host_by_event_name ...
1421status
1422Checking table events_waits_summary_by_thread_by_event_name ...
1423status
1424Checking table events_waits_summary_by_user_by_event_name ...
1425status
1426Checking table events_waits_summary_global_by_event_name ...
1427status
1428Checking table file_summary_by_event_name ...
1429status
1430Checking table memory_summary_by_account_by_event_name ...
1431status
1432Checking table memory_summary_by_host_by_event_name ...
1433status
1434Checking table memory_summary_by_thread_by_event_name ...
1435status
1436Checking table memory_summary_by_user_by_event_name ...
1437status
1438Checking table memory_summary_global_by_event_name ...
1439status
1440Checking table socket_summary_by_event_name ...
1441Warnings:
1442Warning	12000	Done
1443call check_instrument("transaction");
1444instr_name	is_wait	is_wait_file	is_wait_socket	is_stage	is_statement	is_memory	is_transaction
1445transaction	0	0	0	0	0	0	1
1446status
1447Checking table events_stages_summary_by_account_by_event_name ...
1448status
1449Checking table events_stages_summary_by_host_by_event_name ...
1450status
1451Checking table events_stages_summary_by_thread_by_event_name ...
1452status
1453Checking table events_stages_summary_by_user_by_event_name ...
1454status
1455Checking table events_stages_summary_global_by_event_name ...
1456status
1457Checking table events_statements_summary_by_account_by_event_name ...
1458status
1459Checking table events_statements_summary_by_host_by_event_name ...
1460status
1461Checking table events_statements_summary_by_thread_by_event_name ...
1462status
1463Checking table events_statements_summary_by_user_by_event_name ...
1464status
1465Checking table events_statements_summary_global_by_event_name ...
1466status
1467Checking table events_transactions_summary_by_account_by_event_name ...
1468status
1469Checking table events_transactions_summary_by_host_by_event_name ...
1470status
1471Checking table events_transactions_summary_by_thread_by_event_name ...
1472status
1473Checking table events_transactions_summary_by_user_by_event_name ...
1474status
1475Checking table events_transactions_summary_global_by_event_name ...
1476status
1477Checking table events_waits_summary_by_account_by_event_name ...
1478status
1479Checking table events_waits_summary_by_host_by_event_name ...
1480status
1481Checking table events_waits_summary_by_thread_by_event_name ...
1482status
1483Checking table events_waits_summary_by_user_by_event_name ...
1484status
1485Checking table events_waits_summary_global_by_event_name ...
1486status
1487Checking table file_summary_by_event_name ...
1488status
1489Checking table memory_summary_by_account_by_event_name ...
1490status
1491Checking table memory_summary_by_host_by_event_name ...
1492status
1493Checking table memory_summary_by_thread_by_event_name ...
1494status
1495Checking table memory_summary_by_user_by_event_name ...
1496status
1497Checking table memory_summary_global_by_event_name ...
1498status
1499Checking table socket_summary_by_event_name ...
1500Warnings:
1501Warning	12000	Done
1502drop procedure check_instrument;
1503