` ts_min ` datetime NOT NULL DEFAULT ‘0000-00-00 00:00:00‘ COMMENT ‘最早执行时间‘ ,
` ts_max` datetime NOT NULL DEFAULT ‘0000-00-00 00:00:00‘ COMMENT ‘最晚执行时间‘ ,
` ts_cnt` float DEFAULT NULL COMMENT ‘总共执行次数‘ ,
` Query_time_sum` float DEFAULT NULL COMMENT ‘总查询时间‘ ,
` Query_time_min` float DEFAULT NULL COMMENT ‘最小查询时间‘ ,
` Query_time_max` float DEFAULT NULL COMMENT ‘最大查询时间‘ ,
` Query_time_pct_95` float DEFAULT NULL COMMENT ‘平均查询时间‘ ,
` Query_time_stddev` float DEFAULT NULL COMMENT ‘查询时间标准差‘ ,
` Query_time_median` float DEFAULT NULL COMMENT ‘查询时间中位数‘ ,
` Lock_time_sum` float DEFAULT NULL COMMENT ‘总锁定时间‘ ,,
` Lock_time_min` float DEFAULT NULL COMMENT ‘最小锁定时间‘ ,
` Lock_time_max` float DEFAULT NULL COMMENT ‘最大锁定时间‘ ,
` Lock_time_pct_95` float DEFAULT NULL COMMENT ‘平均锁定时间‘ ,
` Lock_time_stddev` float DEFAULT NULL COMMENT ‘锁定时间标准差‘ ,
` Lock_time_median` float DEFAULT NULL COMMENT ‘锁定时间中位数‘ ,
` Rows_sent_sum` float DEFAULT NULL COMMENT ‘总返回记录行数‘ ,
` Rows_sent_min` float DEFAULT NULL COMMENT ‘最小返回记录数‘ ,
` Rows_sent_max` float DEFAULT NULL COMMENT ‘最大返回记录数‘ ,
` Rows_sent_pct_95` float DEFAULT NULL COMMENT ‘平均返回记录数‘ ,
` Rows_sent_stddev` float DEFAULT NULL COMMENT ‘发送返回数标准差‘ ,
` Rows_sent_median` float DEFAULT NULL COMMENT ‘返回记录数中位数‘ ,
` Rows_examined_sum` float DEFAULT NULL COMMENT ‘参加运算的记录总行数‘ ,
` Rows_examined_min` float DEFAULT NULL COMMENT ‘最少参加运算的记录行数‘ ,
` Rows_examined_max` float DEFAULT NULL COMMENT ‘最多参加运算的记录行数‘ ,
` Rows_examined_pct_95` float DEFAULT NULL COMMENT ‘平均参加运算的记录行数‘ ,
` Rows_examined_stddev` float DEFAULT NULL COMMENT ‘参加运算的记录行数标准差‘ ,
` Rows_examined_median` float DEFAULT NULL COMMENT ‘参加运算的记录行数中位数‘ ,
` Rows_affected_sum` float DEFAULT NULL COMMENT ‘受影响记录总行数‘ ,
` Rows_affected_min` float DEFAULT NULL COMMENT ‘最少受影响记录行数‘ ,
` Rows_affected_max` float DEFAULT NULL COMMENT ‘最大受影响记录行数‘ ,
` Rows_affected_pct_95` float DEFAULT NULL COMMENT ‘平均受影响记录行数‘ ,
` Rows_affected_stddev` float DEFAULT NULL COMMENT ‘受影响记录行数标准差‘ ,
` Rows_affected_median` float DEFAULT NULL COMMENT ‘受影响记录行数中位数‘ ,
` Rows_read_sum` float DEFAULT NULL COMMENT ‘读入记录行总数‘ ,
` Rows_read_min` float DEFAULT NULL COMMENT ‘读入记录行最小数‘ ,
` Rows_read_max` float DEFAULT NULL COMMENT ‘读入记录行最大数‘ ,
` Rows_read_pct_95` float DEFAULT NULL COMMENT ‘读入记录行平均数‘ ,
` Rows_read_stddev` float DEFAULT NULL COMMENT ‘读入记录行数标准差‘ ,
` Rows_read_median` float DEFAULT NULL COMMENT ‘读入记录行数中位数‘ ,
` Merge_passes_sum` float DEFAULT NULL COMMENT ‘数据表合并总数‘ ,
` Merge_passes_min` float DEFAULT NULL COMMENT ‘数据表合并最小数‘ ,
` Merge_passes_max` float DEFAULT NULL COMMENT ‘数据表合并最大数‘ ,
` Merge_passes_pct_95` float DEFAULT NULL COMMENT ‘数据表合并平均数‘ ,
` Merge_passes_stddev` float DEFAULT NULL COMMENT ‘数据表合并数标准差‘ ,
` Merge_passes_median` float DEFAULT NULL COMMENT ‘数据表合并数中位数‘ ,
` InnoDB_IO_r_ops_min` float DEFAULT NULL COMMENT ‘统计计划需要读取的最小页数‘ ,
` InnoDB_IO_r_ops_max` float DEFAULT NULL COMMENT ‘统计计划需要读取的最大页数‘ ,
` InnoDB_IO_r_ops_pct_95` float DEFAULT NULL COMMENT ‘统计计划需要读取的平均页数‘ ,
` InnoDB_IO_r_ops_stddev` float DEFAULT NULL COMMENT ‘统计计划需要读取的页数标准差‘ ,
` InnoDB_IO_r_ops_median` float DEFAULT NULL COMMENT ‘统计计划需要读取的页数中位数‘ ,
` InnoDB_IO_r_bytes_min` float DEFAULT NULL COMMENT ‘统计计划需要读取的最小字节数‘ ,
` InnoDB_IO_r_bytes_max` float DEFAULT NULL COMMENT ‘统计计划需要读取的最大字节数‘ ,
` InnoDB_IO_r_bytes_pct_95` float DEFAULT NULL COMMENT ‘统计计划需要读取的平均字节数‘ ,
` InnoDB_IO_r_bytes_stddev` float DEFAULT NULL COMMENT ‘统计计划需要读取的字节数标准差‘ ,
` InnoDB_IO_r_bytes_median` float DEFAULT NULL COMMENT ‘统计计划需要读取的字节数中位数‘ ,
` InnoDB_IO_r_wait_min` float DEFAULT NULL COMMENT ‘读取记录时产生锁等待的最小时间‘ ,
` InnoDB_IO_r_wait_max` float DEFAULT NULL COMMENT ‘读取记录时产生锁等待的最大时间‘ ,
` InnoDB_IO_r_wait_pct_95` float DEFAULT NULL COMMENT ‘读取记录时产生锁等待的平均时间‘ ,
` InnoDB_IO_r_wait_stddev` float DEFAULT NULL COMMENT ‘读取记录时产生锁等待时间标准差‘ ,
` InnoDB_IO_r_wait_median` float DEFAULT NULL COMMENT ‘读取记录时产生锁等待时间中位数‘ ,
` InnoDB_rec_lock_wait_min` float DEFAULT NULL COMMENT ‘读取记录时产生行锁等待的最小时间‘ ,
` InnoDB_rec_lock_wait_max` float DEFAULT NULL COMMENT ‘读取记录时产生行锁等待的最大时间‘ ,
` InnoDB_rec_lock_wait_pct_95` float DEFAULT NULL COMMENT ‘读取记录时产生行锁等待的平均时间‘ ,
` InnoDB_rec_lock_wait_stddev` float DEFAULT NULL COMMENT ‘读取记录时产生行锁等待时间标准差‘ ,
` InnoDB_rec_lock_wait_median` float DEFAULT NULL COMMENT ‘读取记录时产生行锁等待时间中位数‘ ,
` InnoDB_queue_wait_min` float DEFAULT NULL COMMENT ‘等待进入 InnoDB 队列或在队列中等待执行所消耗的最小时间‘ ,
` InnoDB_queue_wait_max` float DEFAULT NULL COMMENT ‘等待进入 InnoDB 队列或在队列中等待执行所消耗的最大时间‘ ,
` InnoDB_queue_wait_pct_95` float DEFAULT NULL COMMENT ‘等待进入 InnoDB 队列或在队列中等待执行所消耗的平均时间‘ ,
` InnoDB_queue_wait_stddev` float DEFAULT NULL COMMENT ‘等待进入 InnoDB 队列或在队列中等待执行所消耗时间标准差‘ ,
` InnoDB_queue_wait_median` float DEFAULT NULL COMMENT ‘等待进入 InnoDB 队列或在队列中等待执行所消耗时间中位数‘ ,
` InnoDB_pages_distinct_min` float DEFAULT NULL COMMENT ‘读取的独立页最小个数‘ ,
` InnoDB_pages_distinct_max` float DEFAULT NULL COMMENT ‘读取的独立页最大个数‘ ,
` InnoDB_pages_distinct_pct_95` float DEFAULT NULL COMMENT ‘读取的独立页平均个数‘ ,
` InnoDB_pages_distinct_stddev` float DEFAULT NULL COMMENT ‘读取的独立页个数标准差‘ ,
` InnoDB_pages_distinct_median` float DEFAULT NULL COMMENT ‘读取的独立页个数中位数‘ ,
` QC_Hit_cnt` float DEFAULT NULL COMMENT ‘QUERY缓冲区的命中次数‘ ,
` QC_Hit_sum` float DEFAULT NULL COMMENT ‘QUERY缓冲区的命中总数‘ ,
` Full_scan_cnt` float DEFAULT NULL COMMENT ‘全表扫描次数‘ ,
` Full_scan_sum` float DEFAULT NULL COMMENT ‘全表扫描总数‘ ,
` Full_join_cnt` float DEFAULT NULL COMMENT ‘数据表全连接次数‘ ,
` Full_join_sum` float DEFAULT NULL COMMENT ‘数据表全连接总数‘ ,
` Tmp_table_cnt` float DEFAULT NULL COMMENT ‘内存中使用临时表次数‘ ,
` Tmp_table_sum` float DEFAULT NULL COMMENT ‘内存中使用临时表总数‘ ,
` Disk_tmp_table_cnt` float DEFAULT NULL COMMENT ‘磁盘上使用临时表总数‘ ,
` Disk_tmp_table_sum` float DEFAULT NULL COMMENT ‘磁盘上使用临时表总数‘ ,
` Filesort_cnt` float DEFAULT NULL COMMENT ‘内存排序次数‘ ,
` Filesort_sum` float DEFAULT NULL COMMENT ‘内存排序总数‘ ,
` Disk_filesort_cnt` float DEFAULT NULL COMMENT ‘磁盘排序次数‘ ,
` Disk_filesort_sum` float DEFAULT NULL COMMENT ‘磁盘排序总数‘
mysql version = 5.6.19 字段差异
-->增加:
checksum => 校验值
sample => sql 样本
-->差异:
原字段 改后字段
Disk_tmp_table_cnt => Tmp_table_on_disk_cnt
Disk_tmp_table_sum => Tmp_table_on_disk_sum
Disk_filesort_cnt => Filesort_on_disk_cnt
Disk_filesort_sum => Filesort_on_disk_sum