|
1 #filter substitution |
|
2 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
5 |
|
6 pref("datareporting.healthreport.currentDaySubmissionFailureCount", 0); |
|
7 pref("datareporting.healthreport.documentServerURI", "https://fhr.data.mozilla.com/"); |
|
8 pref("datareporting.healthreport.documentServerNamespace", "metrics"); |
|
9 pref("datareporting.healthreport.infoURL", "https://www.mozilla.org/legal/privacy/firefox.html#health-report"); |
|
10 pref("datareporting.healthreport.logging.consoleEnabled", true); |
|
11 pref("datareporting.healthreport.logging.consoleLevel", "Warn"); |
|
12 pref("datareporting.healthreport.logging.dumpEnabled", false); |
|
13 pref("datareporting.healthreport.logging.dumpLevel", "Debug"); |
|
14 pref("datareporting.healthreport.lastDataSubmissionFailureTime", "0"); |
|
15 pref("datareporting.healthreport.lastDataSubmissionRequestedTime", "0"); |
|
16 pref("datareporting.healthreport.lastDataSubmissionSuccessfulTime", "0"); |
|
17 pref("datareporting.healthreport.nextDataSubmissionTime", "0"); |
|
18 pref("datareporting.healthreport.pendingDeleteRemoteData", false); |
|
19 |
|
20 // Health Report is enabled by default on all channels. |
|
21 pref("datareporting.healthreport.uploadEnabled", true); |
|
22 |
|
23 pref("datareporting.healthreport.service.enabled", true); |
|
24 pref("datareporting.healthreport.service.loadDelayMsec", 10000); |
|
25 pref("datareporting.healthreport.service.loadDelayFirstRunMsec", 60000); |
|
26 |
|
27 pref("datareporting.healthreport.service.providerCategories", |
|
28 #if MOZ_UPDATE_CHANNEL == release |
|
29 "healthreport-js-provider-default" |
|
30 #elif MOZ_UPDATE_CHANNEL == default |
|
31 "healthreport-js-provider-default" |
|
32 #else |
|
33 "healthreport-js-provider-default,healthreport-js-provider-@MOZ_UPDATE_CHANNEL@" |
|
34 #endif |
|
35 ); |
|
36 |
|
37 pref("datareporting.healthreport.about.reportUrl", "https://fhr.cdn.mozilla.net/%LOCALE%/"); |