Hi there,
First of all, I'd like to congratulate and thanks for the ProxySQL. What an awesome job you're doing. And I'm sorry if someone already talked about this, even after spending a couple of hours searching, I didn't find anything about it.
I've some questions about the ProxySQL stats metrics:
1. Is time measuring in microseconds? milliseconds? seconds?
2. What means count_star, sum_time, min_time, max_time?
For example: a query that had max_time=4606625 ; sum_time=
6364472670 ; count_star=1505. What does it mean to me? I mean, how can I parse this values in a human-readable way.
3. The same for the stats_mysql_commands_counters. Using the example below:
MySQL [(none)]> select * from stats_mysql_commands_counters where command like 'select'\G
*************************** 1. row ***************************
Command: SELECT
Total_Time_us:
6468061236 Total_cnt: 2813
cnt_100us: 12
cnt_500us: 558
cnt_1ms: 446
cnt_5ms: 240
cnt_10ms: 25
cnt_50ms: 5
cnt_100ms: 1
cnt_500ms: 0
cnt_1s: 0
cnt_5s: 1525
cnt_10s: 0
cnt_INFs: 1
1 row in set (0.00 sec)
I really appreciate some help.