![]() |
MySQL 8.0.29
Source Code Documentation
|
Performance schema instrumentation (declarations). More...
#include <vector>
#include <mysql/psi/psi_tls_channel.h>
#include "mysql/components/services/bits/mysql_rwlock_bits.h"
Go to the source code of this file.
Typedefs | |
using | tls_channels = std::vector< TLS_channel_property_iterator * > |
Functions | |
void | pfs_register_tls_channel_v1 (TLS_channel_property_iterator *provider) |
Register a TLS channel for instrumentation with PFS. More... | |
void | pfs_unregister_tls_channel_v1 (TLS_channel_property_iterator *provider) |
Un-register a TLS channel for instrumentation with PFS. More... | |
void | init_pfs_tls_channels_instrumentation () |
Initialize internal data structures to instrument TLS channels. More... | |
void | cleanup_pfs_tls_channels_instrumentation () |
Deinitialize internal data structures to instrument TLS channels. More... | |
Variables | |
tls_channels | g_instrumented_tls_channels |
Global structure to store all instrumented TLS channels registered with PFS. More... | |
mysql_rwlock_t | LOCK_pfs_tls_channels |
RW lock that protects list of instrumented TLS channels. More... | |
Performance schema instrumentation (declarations).
using tls_channels = std::vector<TLS_channel_property_iterator *> |
void cleanup_pfs_tls_channels_instrumentation | ( | ) |
Deinitialize internal data structures to instrument TLS channels.
void init_pfs_tls_channels_instrumentation | ( | ) |
Initialize internal data structures to instrument TLS channels.
void pfs_register_tls_channel_v1 | ( | TLS_channel_property_iterator * | provider | ) |
Register a TLS channel for instrumentation with PFS.
[in] | provider | Iterator implementation to fetch all properties |
void pfs_unregister_tls_channel_v1 | ( | TLS_channel_property_iterator * | provider | ) |
Un-register a TLS channel for instrumentation with PFS.
[in] | provider | Iterator implementation |
|
extern |
Global structure to store all instrumented TLS channels registered with PFS.
|
extern |
RW lock that protects list of instrumented TLS channels.