TiDB- 慢查询监控指标含义

会不会是对应的这3个时间

select TIME_FORMAT(time,'%H:%i:%s') t,count(*) cnt,avg(query_time) query_time ,avg(process_time) process_time,avg(wait_time) wait_time 
from information_schema.slow_query
where time>date'2024-01-22'
group by TIME_FORMAT(time,'%H:%i:%s') 
order by 1;```