function saveReport(path, content) {
    fs.writeFile(path + 'resultYSlow.json', content, function (err) {
        if (err) throw err;
        console.log("resultYSlow.json has saved!");
    });