Bench\Siege::fetchReqSec PHP Method

fetchReqSec() protected method

protected fetchReqSec ( $log_file )
    protected function fetchReqSec($log_file)
    {
        $lines = file($log_file);
        $data = explode(',', $lines[1]);
        return (float) $data[5];
    }