MySQL 5.6.14 Source Code Document
|
#include <pfs_con_slice.h>
Public Member Functions | |
void | reset_stats () |
void | reset_waits_stats () |
void | reset_stages_stats () |
void | reset_statements_stats () |
Static Public Member Functions | |
static PFS_single_stat * | alloc_waits_slice (uint sizing) |
static PFS_stage_stat * | alloc_stages_slice (uint sizing) |
static PFS_statement_stat * | alloc_statements_slice (uint sizing) |
Public Attributes | |
PFS_single_stat * | m_instr_class_waits_stats |
PFS_stage_stat * | m_instr_class_stages_stats |
PFS_statement_stat * | m_instr_class_statements_stats |
A connection slice, an arbitrary grouping of several connections. This structure holds statistics for grouping of connections.
Definition at line 40 of file pfs_con_slice.h.
|
inline |
Reset all statistics.
Definition at line 62 of file pfs_con_slice.h.
PFS_stage_stat* PFS_connection_slice::m_instr_class_stages_stats |
Per connection slice stages aggregated statistics. This member holds the data for the table PERFORMANCE_SCHEMA.EVENTS_STAGES_SUMMARY_BY_*_BY_EVENT_NAME. Immutable, safe to use without internal lock.
Definition at line 90 of file pfs_con_slice.h.
PFS_statement_stat* PFS_connection_slice::m_instr_class_statements_stats |
Per connection slice statements aggregated statistics. This member holds the data for the table PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_SUMMARY_BY_*_BY_EVENT_NAME. Immutable, safe to use without internal lock.
Definition at line 98 of file pfs_con_slice.h.
PFS_single_stat* PFS_connection_slice::m_instr_class_waits_stats |
Per connection slice waits aggregated statistics. This member holds the data for the table PERFORMANCE_SCHEMA.EVENTS_WAITS_SUMMARY_BY_*_BY_EVENT_NAME. Immutable, safe to use without internal lock.
Definition at line 82 of file pfs_con_slice.h.