Bug 777220: Temporarily disable slow SQL reporting. r=nfroyd

This commit is contained in:
Vladan Djeric 2012-07-25 12:26:19 -04:00
Родитель 49b935fb41
Коммит 96f43079e2
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -458,7 +458,8 @@ TelemetryPing.prototype = {
Telemetry.histogramFrom("STARTUP_" + name, name);
}
}
this._slowSQLStartup = Telemetry.slowSQL;
// Bug 777220: Temporarily turn off slowSQL reporting
this._slowSQLStartup = {mainThread:{}, otherThreads:{}};
},
getCurrentSessionPayloadAndSlug: function getCurrentSessionPayloadAndSlug(reason) {
@ -468,7 +469,8 @@ TelemetryPing.prototype = {
ver: PAYLOAD_VERSION,
simpleMeasurements: getSimpleMeasurements(),
histograms: this.getHistograms(Telemetry.histogramSnapshots),
slowSQL: Telemetry.slowSQL,
// Bug 777220: Temporarily turn off slowSQL reporting
slowSQL: {mainThread:{}, otherThreads:{}},
chromeHangs: Telemetry.chromeHangs,
addonHistograms: this.getAddonHistograms()
};