mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge remote-tracking branch 'upstream/10.4' into 10.5
This commit is contained in:
@@ -49,30 +49,30 @@ table_socket_summary_by_instance::m_share=
|
||||
sizeof(PFS_simple_index),
|
||||
&m_table_lock,
|
||||
{ C_STRING_WITH_LEN("CREATE TABLE socket_summary_by_instance("
|
||||
"EVENT_NAME VARCHAR(128) not null,"
|
||||
"OBJECT_INSTANCE_BEGIN BIGINT unsigned not null,"
|
||||
"COUNT_STAR BIGINT unsigned not null,"
|
||||
"SUM_TIMER_WAIT BIGINT unsigned not null,"
|
||||
"MIN_TIMER_WAIT BIGINT unsigned not null,"
|
||||
"AVG_TIMER_WAIT BIGINT unsigned not null,"
|
||||
"MAX_TIMER_WAIT BIGINT unsigned not null,"
|
||||
"COUNT_READ BIGINT unsigned not null,"
|
||||
"SUM_TIMER_READ BIGINT unsigned not null,"
|
||||
"MIN_TIMER_READ BIGINT unsigned not null,"
|
||||
"AVG_TIMER_READ BIGINT unsigned not null,"
|
||||
"MAX_TIMER_READ BIGINT unsigned not null,"
|
||||
"SUM_NUMBER_OF_BYTES_READ BIGINT unsigned not null,"
|
||||
"COUNT_WRITE BIGINT unsigned not null,"
|
||||
"SUM_TIMER_WRITE BIGINT unsigned not null,"
|
||||
"MIN_TIMER_WRITE BIGINT unsigned not null,"
|
||||
"AVG_TIMER_WRITE BIGINT unsigned not null,"
|
||||
"MAX_TIMER_WRITE BIGINT unsigned not null,"
|
||||
"SUM_NUMBER_OF_BYTES_WRITE BIGINT unsigned not null,"
|
||||
"COUNT_MISC BIGINT unsigned not null,"
|
||||
"SUM_TIMER_MISC BIGINT unsigned not null,"
|
||||
"MIN_TIMER_MISC BIGINT unsigned not null,"
|
||||
"AVG_TIMER_MISC BIGINT unsigned not null,"
|
||||
"MAX_TIMER_MISC BIGINT unsigned not null)") },
|
||||
"EVENT_NAME VARCHAR(128) not null comment 'Socket instrument.',"
|
||||
"OBJECT_INSTANCE_BEGIN BIGINT unsigned not null comment 'Address in memory.',"
|
||||
"COUNT_STAR BIGINT unsigned not null comment 'Number of summarized events',"
|
||||
"SUM_TIMER_WAIT BIGINT unsigned not null comment 'Total wait time of the summarized events that are timed.',"
|
||||
"MIN_TIMER_WAIT BIGINT unsigned not null comment 'Minimum wait time of the summarized events that are timed.',"
|
||||
"AVG_TIMER_WAIT BIGINT unsigned not null comment 'Average wait time of the summarized events that are timed.',"
|
||||
"MAX_TIMER_WAIT BIGINT unsigned not null comment 'Maximum wait time of the summarized events that are timed.',"
|
||||
"COUNT_READ BIGINT unsigned not null comment 'Number of all read operations, including RECV, RECVFROM, and RECVMSG.',"
|
||||
"SUM_TIMER_READ BIGINT unsigned not null comment 'Total wait time of all read operations that are timed.',"
|
||||
"MIN_TIMER_READ BIGINT unsigned not null comment 'Minimum wait time of all read operations that are timed.',"
|
||||
"AVG_TIMER_READ BIGINT unsigned not null comment 'Average wait time of all read operations that are timed.',"
|
||||
"MAX_TIMER_READ BIGINT unsigned not null comment 'Maximum wait time of all read operations that are timed.',"
|
||||
"SUM_NUMBER_OF_BYTES_READ BIGINT unsigned not null comment 'Bytes read by read operations.',"
|
||||
"COUNT_WRITE BIGINT unsigned not null comment 'Number of all write operations, including SEND, SENDTO, and SENDMSG.',"
|
||||
"SUM_TIMER_WRITE BIGINT unsigned not null comment 'Total wait time of all write operations that are timed.',"
|
||||
"MIN_TIMER_WRITE BIGINT unsigned not null comment 'Minimum wait time of all write operations that are timed.',"
|
||||
"AVG_TIMER_WRITE BIGINT unsigned not null comment 'Average wait time of all write operations that are timed.',"
|
||||
"MAX_TIMER_WRITE BIGINT unsigned not null comment 'Maximum wait time of all write operations that are timed.',"
|
||||
"SUM_NUMBER_OF_BYTES_WRITE BIGINT unsigned not null comment 'Bytes written by write operations.',"
|
||||
"COUNT_MISC BIGINT unsigned not null comment 'Number of all miscellaneous operations not counted above, including CONNECT, LISTEN, ACCEPT, CLOSE, and SHUTDOWN.',"
|
||||
"SUM_TIMER_MISC BIGINT unsigned not null comment 'Total wait time of all miscellaneous operations that are timed.',"
|
||||
"MIN_TIMER_MISC BIGINT unsigned not null comment 'Minimum wait time of all miscellaneous operations that are timed.',"
|
||||
"AVG_TIMER_MISC BIGINT unsigned not null comment 'Average wait time of all miscellaneous operations that are timed.',"
|
||||
"MAX_TIMER_MISC BIGINT unsigned not null comment 'Maximum wait time of all miscellaneous operations that are timed.')") },
|
||||
false /* perpetual */
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user