moodlehq / moodle-performance-comparison

Set of shell scripts to run Moodle performance tests using different hardware and configurations and compare results.
GNU General Public License v2.0
75 stars 39 forks source link

Fix the "timeused" recorder/scrapper. #66

Closed stronk7 closed 4 years ago

stronk7 commented 4 years ago

Right now it was reporting 0 all the time. That's because at some point some BS classes were added to it:

lib/moodlelib.php <li class="timeused col-sm-4">'.$info['realtime'].' secs</li>

and the recorder was not matching anymore. This simple change allows the recorder to find it properly, in a BC way (old sites).

Not that the "timeused" indication is the most important at all, because can fli-flop a lot... but better we get it back.

stronk7 commented 4 years ago

thanks!