stolk/chiaharvestgraph

Slowest-Check

Closed this issue · 2 comments

Hello! Thank you for a wonderful project.
I am interested in the "SLOWEST-CHECK" parameter, what does it affect and is it worth worrying about the low speed?
If so, tell me how you can speed it up.

Снимок экрана от 2021-05-16 12-00-49

Please give a detailed description of these two parameters:
AVG-CHECK, SLOWEST-CHECK

Sincerely, Alexander.

These lines of code explain what AVG-CHECK and below that what SLOWEST-CHECK "ok", and "slow" correlate to.

const char* q_av = 0;
if ( avgms < 80 )
q_av = "fast";
else if ( avgms < 300 )
q_av = "ok";
else
q_av = "slow";

Hi,
Shouldn't the q_av descriptions be the same as the q_wo descriptions? I'd be very happy if my set of hdd's where able to respond in less than 80ms on average but the q_wo descriptions feel more realistic.