2013-04-08 10:54:20 -07:00
|
|
|
#filter substitution
|
2012-11-13 20:22:09 -08:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2013-01-11 13:45:22 -08:00
|
|
|
pref("datareporting.healthreport.currentDaySubmissionFailureCount", 0);
|
2013-05-05 07:04:38 -07:00
|
|
|
pref("datareporting.healthreport.documentServerURI", "https://fhr.data.mozilla.com/");
|
2013-01-11 13:45:22 -08:00
|
|
|
pref("datareporting.healthreport.documentServerNamespace", "metrics");
|
2013-03-26 21:26:43 -07:00
|
|
|
pref("datareporting.healthreport.infoURL", "https://www.mozilla.org/legal/privacy/firefox.html#health-report");
|
2013-01-11 13:45:22 -08:00
|
|
|
pref("datareporting.healthreport.logging.consoleEnabled", true);
|
|
|
|
pref("datareporting.healthreport.logging.consoleLevel", "Warn");
|
2013-03-28 20:06:05 -07:00
|
|
|
pref("datareporting.healthreport.logging.dumpEnabled", false);
|
|
|
|
pref("datareporting.healthreport.logging.dumpLevel", "Debug");
|
2013-01-11 13:45:22 -08:00
|
|
|
pref("datareporting.healthreport.lastDataSubmissionFailureTime", "0");
|
|
|
|
pref("datareporting.healthreport.lastDataSubmissionRequestedTime", "0");
|
|
|
|
pref("datareporting.healthreport.lastDataSubmissionSuccessfulTime", "0");
|
|
|
|
pref("datareporting.healthreport.nextDataSubmissionTime", "0");
|
|
|
|
pref("datareporting.healthreport.pendingDeleteRemoteData", false);
|
|
|
|
|
|
|
|
// Health Report is enabled by default on all channels.
|
|
|
|
pref("datareporting.healthreport.uploadEnabled", true);
|
|
|
|
|
|
|
|
pref("datareporting.healthreport.service.enabled", true);
|
|
|
|
pref("datareporting.healthreport.service.loadDelayMsec", 10000);
|
2013-02-05 20:25:48 -08:00
|
|
|
pref("datareporting.healthreport.service.loadDelayFirstRunMsec", 60000);
|
2013-03-21 20:13:56 -07:00
|
|
|
|
|
|
|
pref("datareporting.healthreport.service.providerCategories",
|
|
|
|
#if MOZ_UPDATE_CHANNEL == release
|
|
|
|
"healthreport-js-provider-default"
|
2013-04-08 10:54:20 -07:00
|
|
|
#elif MOZ_UPDATE_CHANNEL == default
|
|
|
|
"healthreport-js-provider-default"
|
2013-03-21 20:13:56 -07:00
|
|
|
#else
|
|
|
|
"healthreport-js-provider-default,healthreport-js-provider-@MOZ_UPDATE_CHANNEL@"
|
|
|
|
#endif
|
|
|
|
);
|
2013-01-11 13:45:22 -08:00
|
|
|
|
2013-03-23 21:29:41 -07:00
|
|
|
pref("datareporting.healthreport.about.reportUrl", "https://fhr.cdn.mozilla.net/%LOCALE%/");
|