MySQL 9.6.0
Source Code Documentation
pfs_server.h
Go to the documentation of this file.
1/* Copyright (c) 2008, 2025, Oracle and/or its affiliates.
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is designed to work with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have either included with
13 the program or referenced in the documentation.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License, version 2.0, for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef PFS_SERVER_H
25#define PFS_SERVER_H
26
27/**
28 @file storage/perfschema/pfs_server.h
29 Private interface for the server (declarations).
30*/
31
32#include <sys/types.h>
33
34#include "my_psi_config.h"
35#include "mysql/psi/psi_cond.h"
37#include "mysql/psi/psi_error.h"
38#include "mysql/psi/psi_file.h"
39#include "mysql/psi/psi_idle.h"
41#include "mysql/psi/psi_mdl.h"
44#include "mysql/psi/psi_mutex.h"
47#include "mysql/psi/psi_stage.h"
50#include "mysql/psi/psi_table.h"
54
55#ifdef HAVE_PSI_INTERFACE
56
57#define PFS_AUTOSCALE_VALUE (-1)
58#define PFS_AUTOSIZE_VALUE (-1)
59
60#ifndef PFS_MAX_MUTEX_CLASS
61#define PFS_MAX_MUTEX_CLASS 350
62#endif
63#ifndef PFS_MAX_RWLOCK_CLASS
64#define PFS_MAX_RWLOCK_CLASS 100
65#endif
66#ifndef PFS_MAX_COND_CLASS
67#define PFS_MAX_COND_CLASS 150
68#endif
69#ifndef PFS_MAX_THREAD_CLASS
70#define PFS_MAX_THREAD_CLASS 100
71#endif
72#ifndef PFS_MAX_FILE_CLASS
73#define PFS_MAX_FILE_CLASS 80
74#endif
75#ifndef PFS_MAX_FILE_HANDLE
76#define PFS_MAX_FILE_HANDLE 32768
77#endif
78#ifndef PFS_MAX_SOCKET_CLASS
79#define PFS_MAX_SOCKET_CLASS 10
80#endif
81#ifndef PFS_MAX_STAGE_CLASS
82#define PFS_MAX_STAGE_CLASS 175
83#endif
84#ifndef PFS_STATEMENTS_STACK_SIZE
85#define PFS_STATEMENTS_STACK_SIZE 10
86#endif
87#ifndef PFS_MAX_MEMORY_CLASS
88#define PFS_MAX_MEMORY_CLASS 470
89#endif
90#ifndef PFS_MAX_METER_CLASS
91#define PFS_MAX_METER_CLASS 30
92#endif
93#ifndef PFS_MAX_METRIC_CLASS
94#define PFS_MAX_METRIC_CLASS 600
95#endif
96#ifndef PFS_MAX_LOGGER_CLASS
97#define PFS_MAX_LOGGER_CLASS 80
98#endif
99
100#ifndef PFS_MAX_GLOBAL_SERVER_ERRORS
101#define PFS_MAX_GLOBAL_SERVER_ERRORS \
102 (1 + pfs_session_error_stat_count + pfs_global_error_stat_count)
103#endif
104
105#ifndef PFS_MAX_SESSION_SERVER_ERRORS
106#define PFS_MAX_SESSION_SERVER_ERRORS (1 + pfs_session_error_stat_count)
107#endif
108
109/** Sizing hints, from the server configuration. */
111 /** Value of @c Sys_table_def_size */
113 /** Value of @c Sys_table_cache_size */
115 /** Value of @c Sys_max_connections */
117 /** Value of @c Sys_open_files_limit */
119 /** Value of @c Sys_max_prepared_stmt_count */
121};
122
123/** Performance schema global sizing parameters. */
125 /** True if the performance schema is enabled. */
127 /** Default values for SETUP_CONSUMERS. */
144
145 /** Default instrument configuration option. */
147
148 /** Default meter instrument configuration option. */
150
151 /** Default logger instrument configuration option. */
153
154 /**
155 Maximum number of instrumented mutex classes.
156 @sa mutex_class_lost.
157 */
159 /**
160 Maximum number of instrumented rwlock classes.
161 @sa rwlock_class_lost.
162 */
164 /**
165 Maximum number of instrumented cond classes.
166 @sa cond_class_lost.
167 */
169 /**
170 Maximum number of instrumented thread classes.
171 @sa thread_class_lost.
172 */
174 /**
175 Maximum number of instrumented table share.
176 @sa table_share_lost.
177 */
179 /**
180 Maximum number of lock statistics collected for tables.
181 @sa table_lock_stat_lost.
182 */
184 /**
185 Maximum number of index statistics collected for tables.
186 @sa table_index_lost.
187 */
189 /**
190 Maximum number of instrumented file classes.
191 @sa file_class_lost.
192 */
194 /**
195 Maximum number of instrumented mutex instances.
196 @sa mutex_lost.
197 */
199 /**
200 Maximum number of instrumented rwlock instances.
201 @sa rwlock_lost.
202 */
204 /**
205 Maximum number of instrumented cond instances.
206 @sa cond_lost.
207 */
209 /**
210 Maximum number of instrumented thread instances.
211 @sa thread_lost.
212 */
214 /**
215 Maximum number of instrumented table handles.
216 @sa table_lost.
217 */
219 /**
220 Maximum number of instrumented file instances.
221 @sa file_lost.
222 */
224 /**
225 Maximum number of instrumented file handles.
226 @sa file_handle_lost.
227 */
229 /**
230 Maximum number of instrumented socket instances
231 @sa socket_lost
232 */
234 /**
235 Maximum number of instrumented socket classes.
236 @sa socket_class_lost.
237 */
239 /** Maximum number of rows per thread in table EVENTS_WAITS_HISTORY. */
241 /** Maximum number of rows in table EVENTS_WAITS_HISTORY_LONG. */
243 /** Maximum number of rows in table SETUP_ACTORS. */
245 /** Maximum number of rows in table SETUP_OBJECTS. */
247 /** Maximum number of rows in table HOSTS. */
249 /** Maximum number of rows in table USERS. */
251 /** Maximum number of rows in table ACCOUNTS. */
253 /**
254 Maximum number of instrumented stage classes.
255 @sa stage_class_lost.
256 */
258 /** Maximum number of rows per thread in table EVENTS_STAGES_HISTORY. */
260 /** Maximum number of rows in table EVENTS_STAGES_HISTORY_LONG. */
262 /**
263 Maximum number of instrumented statement classes.
264 @sa statement_class_lost.
265 */
267 /** Maximum number of rows per thread in table EVENTS_STATEMENTS_HISTORY. */
269 /** Maximum number of rows in table EVENTS_STATEMENTS_HISTORY_LONG. */
271 /** Maximum number of digests to be captured */
273 /** Maximum number of programs to be captured */
275 /** Maximum number of prepared statements to be captured */
277 /** Maximum number of rows per thread in table EVENTS_TRANSACTIONS_HISTORY. */
279 /** Maximum number of rows in table EVENTS_TRANSACTIONS_HISTORY_LONG. */
281
282 /** Maximum number of session attribute strings per thread */
284 /** Maximum size of statement stack */
286
287 /**
288 Maximum number of instrumented memory classes.
289 @sa memory_class_lost.
290 */
292
293 /**
294 Maximum number of instrumented meter classes.
295 @sa meter_class_lost.
296 */
298
299 /**
300 Maximum number of instrumented metric classes.
301 @sa metric_class_lost.
302 */
304
305 /**
306 Maximum number of instrumented logger classes.
307 @sa logger_class_lost.
308 */
310
312
315
316 /** Maximum age in seconds for a query sample. */
318
319 /** Maximum number of error instrumented */
321
322 /** Sizing hints, for auto tuning. */
324};
325
326/**
327 Performance schema sizing values for the server.
328 This global variable is set when parsing server startup options.
329*/
331
332/**
333 Null initialization.
334 Disable all instrumentation, size all internal buffers to 0.
335 This pre initialization step is needed to ensure that events can be collected
336 and discarded, until such time @c initialize_performance_schema() is called.
337*/
339
340/**
341 Initialize the performance schema.
342 The performance schema implement several instrumentation services.
343 Each instrumentation service is versioned, and accessible through
344 a bootstrap structure, returned as output parameter.
345 @param param Size parameters to use.
346 @param [out] thread_bootstrap Thread instrumentation service bootstrap
347 @param [out] mutex_bootstrap Mutex instrumentation service bootstrap
348 @param [out] rwlock_bootstrap Rwlock instrumentation service bootstrap
349 @param [out] cond_bootstrap Condition instrumentation service bootstrap
350 @param [out] file_bootstrap File instrumentation service bootstrap
351 @param [out] socket_bootstrap Socket instrumentation service bootstrap
352 @param [out] table_bootstrap Table instrumentation service bootstrap
353 @param [out] mdl_bootstrap Metadata Lock instrumentation service bootstrap
354 @param [out] idle_bootstrap Idle instrumentation service bootstrap
355 @param [out] stage_bootstrap Stage instrumentation service bootstrap
356 @param [out] statement_bootstrap Statement instrumentation service bootstrap
357 @param [out] transaction_bootstrap Transaction instrumentation service
358 bootstrap
359 @param [out] memory_bootstrap Memory instrumentation service bootstrap
360 @param [out] error_bootstrap Error instrumentation service bootstrap
361 @param [out] data_lock_bootstrap Data Lock instrumentation service bootstrap
362 @param [out] system_bootstrap System instrumentation service bootstrap
363 @param [out] tls_channel_bootstrap TLS channel instrumentation service
364 bootstrap
365 @param [out] metric_bootstrap Telemetry metrics instrumentation service
366 bootstrap
367 @param [out] logs_client_bootstrap Telemetry logs client instrumentation
368 service bootstrap
369 @retval 0 success
370*/
372 PFS_global_param *param, PSI_thread_bootstrap **thread_bootstrap,
373 PSI_mutex_bootstrap **mutex_bootstrap,
374 PSI_rwlock_bootstrap **rwlock_bootstrap,
375 PSI_cond_bootstrap **cond_bootstrap, PSI_file_bootstrap **file_bootstrap,
376 PSI_socket_bootstrap **socket_bootstrap,
377 PSI_table_bootstrap **table_bootstrap, PSI_mdl_bootstrap **mdl_bootstrap,
378 PSI_idle_bootstrap **idle_bootstrap, PSI_stage_bootstrap **stage_bootstrap,
379 PSI_statement_bootstrap **statement_bootstrap,
380 PSI_transaction_bootstrap **transaction_bootstrap,
381 PSI_memory_bootstrap **memory_bootstrap,
382 PSI_error_bootstrap **error_bootstrap,
383 PSI_data_lock_bootstrap **data_lock_bootstrap,
384 PSI_system_bootstrap **system_bootstrap,
385 PSI_tls_channel_bootstrap **tls_channel_bootstrap,
386 PSI_metric_bootstrap **metric_bootstrap,
387 PSI_logs_client_bootstrap **logs_client_bootstrap);
388
390
391/**
392 Initialize the performance schema ACL.
393 ACL is strictly enforced when the server is running in normal mode,
394 to enforce that only legal operations are allowed.
395 When running in bootstrap mode, ACL restrictions are relaxed,
396 to allow the bootstrap scripts to DROP / CREATE performance schema tables.
397 @sa ACL_internal_schema_registry
398 @param bootstrap True if the server is starting in bootstrap mode.
399*/
401
402/**
403 Reset the aggregated status counter stats.
404*/
406
407/**
408 Initialize the dynamic array holding individual instrument settings collected
409 from the server configuration options.
410*/
412
413/**
414 Process one PFS_INSTRUMENT configuration string.
415*/
416int add_pfs_instr_to_array(const char *name, const char *value);
417
418/**
419 Initialize the dynamic array holding individual meter instrument settings
420 collected from the server configuration options.
421*/
423
424/**
425 Process one PFS_METER configuration string.
426*/
427int add_pfs_meter_to_array(const char *name, const char *value);
428
429/**
430 Initialize the dynamic array holding individual logger instrument settings
431 collected from the server configuration options.
432*/
434
435/**
436 Process one PFS_LOGGER configuration string.
437*/
438int add_pfs_logger_to_array(const char *name, const char *value);
439
440/**
441 Shutdown the performance schema.
442*/
444
445#endif /* HAVE_PSI_INTERFACE */
446
447#endif /* PFS_SERVER_H */
void initialize_performance_schema_acl(bool bootstrap)
Initialize the performance schema ACL.
Definition: pfs_engine_table.cc:1008
Defines various enable/disable and HAVE_ macros related to the performance schema instrumentation sys...
Definition: bootstrap.cc:71
ValueType value(const std::optional< ValueType > &v)
Definition: gtid.h:83
void reset_pfs_status_stats()
Reset the aggregated status counter stats.
Definition: pfs_variable.cc:1546
int add_pfs_meter_to_array(const char *name, const char *value)
Process one PFS_METER configuration string.
Definition: pfs_server.cc:574
int initialize_performance_schema(PFS_global_param *param, PSI_thread_bootstrap **thread_bootstrap, PSI_mutex_bootstrap **mutex_bootstrap, PSI_rwlock_bootstrap **rwlock_bootstrap, PSI_cond_bootstrap **cond_bootstrap, PSI_file_bootstrap **file_bootstrap, PSI_socket_bootstrap **socket_bootstrap, PSI_table_bootstrap **table_bootstrap, PSI_mdl_bootstrap **mdl_bootstrap, PSI_idle_bootstrap **idle_bootstrap, PSI_stage_bootstrap **stage_bootstrap, PSI_statement_bootstrap **statement_bootstrap, PSI_transaction_bootstrap **transaction_bootstrap, PSI_memory_bootstrap **memory_bootstrap, PSI_error_bootstrap **error_bootstrap, PSI_data_lock_bootstrap **data_lock_bootstrap, PSI_system_bootstrap **system_bootstrap, PSI_tls_channel_bootstrap **tls_channel_bootstrap, PSI_metric_bootstrap **metric_bootstrap, PSI_logs_client_bootstrap **logs_client_bootstrap)
Initialize the performance schema.
Definition: pfs_server.cc:100
void shutdown_performance_schema()
Shutdown the performance schema.
Definition: pfs_server.cc:416
void init_pfs_instrument_array()
Initialize the dynamic array holding individual instrument settings collected from the server configu...
Definition: pfs_server.cc:451
void pfs_automated_sizing(PFS_global_param *param)
Definition: pfs_autosize.cc:159
void init_pfs_meter_array()
Initialize the dynamic array holding individual meter instrument settings collected from the server c...
Definition: pfs_server.cc:529
void pre_initialize_performance_schema()
Null initialization.
Definition: pfs_server.cc:77
int add_pfs_instr_to_array(const char *name, const char *value)
Process one PFS_INSTRUMENT configuration string.
Definition: pfs_server.cc:476
int add_pfs_logger_to_array(const char *name, const char *value)
Process one PFS_LOGGER configuration string.
Definition: pfs_server.cc:690
PFS_global_param pfs_param
Performance schema sizing values for the server.
Definition: pfs_server.cc:68
void init_pfs_logger_array()
Initialize the dynamic array holding individual logger instrument settings collected from the server ...
Definition: pfs_server.cc:548
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
Performance schema instrumentation interface.
case opt name
Definition: sslopt-case.h:29
Performance schema global sizing parameters.
Definition: pfs_server.h:124
long m_events_stages_history_long_sizing
Maximum number of rows in table EVENTS_STAGES_HISTORY_LONG.
Definition: pfs_server.h:261
ulong m_memory_class_sizing
Maximum number of instrumented memory classes.
Definition: pfs_server.h:291
long m_socket_sizing
Maximum number of instrumented socket instances.
Definition: pfs_server.h:233
long m_session_connect_attrs_sizing
Maximum number of session attribute strings per thread.
Definition: pfs_server.h:283
ulong m_metric_class_sizing
Maximum number of instrumented metric classes.
Definition: pfs_server.h:303
long m_events_transactions_history_long_sizing
Maximum number of rows in table EVENTS_TRANSACTIONS_HISTORY_LONG.
Definition: pfs_server.h:280
bool m_consumer_events_stages_history_enabled
Definition: pfs_server.h:129
ulong m_max_digest_sample_age
Maximum age in seconds for a query sample.
Definition: pfs_server.h:317
long m_account_sizing
Maximum number of rows in table ACCOUNTS.
Definition: pfs_server.h:252
long m_user_sizing
Maximum number of rows in table USERS.
Definition: pfs_server.h:250
long m_events_waits_history_long_sizing
Maximum number of rows in table EVENTS_WAITS_HISTORY_LONG.
Definition: pfs_server.h:242
long m_index_stat_sizing
Maximum number of index statistics collected for tables.
Definition: pfs_server.h:188
long m_prepared_stmt_sizing
Maximum number of prepared statements to be captured.
Definition: pfs_server.h:276
bool m_consumer_events_transactions_history_enabled
Definition: pfs_server.h:136
bool m_consumer_thread_instrumentation_enabled
Definition: pfs_server.h:142
long m_events_stages_history_sizing
Maximum number of rows per thread in table EVENTS_STAGES_HISTORY.
Definition: pfs_server.h:259
bool m_consumer_events_statements_history_enabled
Definition: pfs_server.h:133
bool m_consumer_events_stages_current_enabled
Default values for SETUP_CONSUMERS.
Definition: pfs_server.h:128
bool m_consumer_events_waits_current_enabled
Definition: pfs_server.h:138
long m_table_share_sizing
Maximum number of instrumented table share.
Definition: pfs_server.h:178
long m_digest_sizing
Maximum number of digests to be captured.
Definition: pfs_server.h:272
bool m_consumer_events_statements_current_enabled
Definition: pfs_server.h:132
ulong m_mutex_class_sizing
Maximum number of instrumented mutex classes.
Definition: pfs_server.h:158
long m_program_sizing
Maximum number of programs to be captured.
Definition: pfs_server.h:274
bool m_consumer_events_transactions_history_long_enabled
Definition: pfs_server.h:137
ulong m_meter_class_sizing
Maximum number of instrumented meter classes.
Definition: pfs_server.h:297
bool m_consumer_events_stages_history_long_enabled
Definition: pfs_server.h:130
long m_file_sizing
Maximum number of instrumented file instances.
Definition: pfs_server.h:223
long m_events_statements_history_long_sizing
Maximum number of rows in table EVENTS_STATEMENTS_HISTORY_LONG.
Definition: pfs_server.h:270
ulong m_socket_class_sizing
Maximum number of instrumented socket classes.
Definition: pfs_server.h:238
long m_rwlock_sizing
Maximum number of instrumented rwlock instances.
Definition: pfs_server.h:203
bool m_consumer_events_statements_history_long_enabled
Definition: pfs_server.h:134
long m_file_handle_sizing
Maximum number of instrumented file handles.
Definition: pfs_server.h:228
bool m_enabled
True if the performance schema is enabled.
Definition: pfs_server.h:126
ulong m_file_class_sizing
Maximum number of instrumented file classes.
Definition: pfs_server.h:193
long m_metadata_lock_sizing
Definition: pfs_server.h:311
long m_setup_object_sizing
Maximum number of rows in table SETUP_OBJECTS.
Definition: pfs_server.h:246
ulong m_rwlock_class_sizing
Maximum number of instrumented rwlock classes.
Definition: pfs_server.h:163
long m_events_waits_history_sizing
Maximum number of rows per thread in table EVENTS_WAITS_HISTORY.
Definition: pfs_server.h:240
ulong m_max_sql_text_length
Definition: pfs_server.h:314
long m_events_transactions_history_sizing
Maximum number of rows per thread in table EVENTS_TRANSACTIONS_HISTORY.
Definition: pfs_server.h:278
bool m_consumer_events_waits_history_long_enabled
Definition: pfs_server.h:140
bool m_consumer_events_statements_cpu_enabled
Definition: pfs_server.h:131
ulong m_logger_class_sizing
Maximum number of instrumented logger classes.
Definition: pfs_server.h:309
long m_cond_sizing
Maximum number of instrumented cond instances.
Definition: pfs_server.h:208
long m_max_digest_length
Definition: pfs_server.h:313
PFS_sizing_hints m_hints
Sizing hints, for auto tuning.
Definition: pfs_server.h:323
ulong m_thread_class_sizing
Maximum number of instrumented thread classes.
Definition: pfs_server.h:173
ulong m_error_sizing
Maximum number of error instrumented.
Definition: pfs_server.h:320
ulong m_statement_class_sizing
Maximum number of instrumented statement classes.
Definition: pfs_server.h:266
long m_mutex_sizing
Maximum number of instrumented mutex instances.
Definition: pfs_server.h:198
bool m_consumer_events_waits_history_enabled
Definition: pfs_server.h:139
ulong m_statement_stack_sizing
Maximum size of statement stack.
Definition: pfs_server.h:285
char * m_pfs_instrument
Default instrument configuration option.
Definition: pfs_server.h:146
char * m_pfs_meter
Default meter instrument configuration option.
Definition: pfs_server.h:149
long m_setup_actor_sizing
Maximum number of rows in table SETUP_ACTORS.
Definition: pfs_server.h:244
long m_events_statements_history_sizing
Maximum number of rows per thread in table EVENTS_STATEMENTS_HISTORY.
Definition: pfs_server.h:268
long m_table_lock_stat_sizing
Maximum number of lock statistics collected for tables.
Definition: pfs_server.h:183
long m_thread_sizing
Maximum number of instrumented thread instances.
Definition: pfs_server.h:213
char * m_pfs_logger
Default logger instrument configuration option.
Definition: pfs_server.h:152
long m_host_sizing
Maximum number of rows in table HOSTS.
Definition: pfs_server.h:248
ulong m_stage_class_sizing
Maximum number of instrumented stage classes.
Definition: pfs_server.h:257
long m_table_sizing
Maximum number of instrumented table handles.
Definition: pfs_server.h:218
bool m_consumer_global_instrumentation_enabled
Definition: pfs_server.h:141
bool m_consumer_events_transactions_current_enabled
Definition: pfs_server.h:135
ulong m_cond_class_sizing
Maximum number of instrumented cond classes.
Definition: pfs_server.h:168
bool m_consumer_statement_digest_enabled
Definition: pfs_server.h:143
Sizing hints, from the server configuration.
Definition: pfs_server.h:110
ulong m_table_definition_cache
Value of Sys_table_def_size.
Definition: pfs_server.h:112
ulong m_max_connections
Value of Sys_max_connections.
Definition: pfs_server.h:116
ulong m_table_open_cache
Value of Sys_table_cache_size.
Definition: pfs_server.h:114
long m_max_prepared_stmt_count
Value of Sys_max_prepared_stmt_count.
Definition: pfs_server.h:120
long m_open_files_limit
Value of Sys_open_files_limit.
Definition: pfs_server.h:118
Entry point for the performance schema interface.
Definition: psi_cond.h:46
Entry point for the performance schema interface.
Definition: psi_data_lock.h:82
Entry point for the performance schema interface.
Definition: psi_error.h:59
Entry point for the performance schema interface.
Definition: psi_file.h:66
Entry point for the performance schema interface.
Definition: psi_idle.h:60
Entry point for the performance schema interface.
Definition: psi_logger_client.h:46
Entry point for the performance schema interface.
Definition: psi_mdl.h:76
Entry point for the performance schema interface.
Definition: psi_memory.h:85
Entry point for the performance schema interface.
Definition: psi_metric.h:46
Entry point for the performance schema interface.
Definition: psi_mutex.h:46
Entry point for the performance schema interface.
Definition: psi_rwlock.h:53
Entry point for the performance schema interface.
Definition: psi_socket.h:52
Entry point for the performance schema interface.
Definition: psi_stage.h:46
Entry point for the performance schema interface.
Definition: psi_statement.h:46
Entry point for the performance schema interface.
Definition: psi_system.h:60
Entry point for the performance schema interface.
Definition: psi_table.h:60
Entry point for the performance schema interface.
Definition: psi_thread.h:102
Entry point for the performance schema interface.
Definition: psi_tls_channel.h:46
Entry point for the performance schema interface.
Definition: psi_transaction.h:60