services/healthreport/healthreport-prefs.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/services/healthreport/healthreport-prefs.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,37 @@
     1.4 +#filter substitution
     1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.8 +
     1.9 +pref("datareporting.healthreport.currentDaySubmissionFailureCount", 0);
    1.10 +pref("datareporting.healthreport.documentServerURI", "https://fhr.data.mozilla.com/");
    1.11 +pref("datareporting.healthreport.documentServerNamespace", "metrics");
    1.12 +pref("datareporting.healthreport.infoURL", "https://www.mozilla.org/legal/privacy/firefox.html#health-report");
    1.13 +pref("datareporting.healthreport.logging.consoleEnabled", true);
    1.14 +pref("datareporting.healthreport.logging.consoleLevel", "Warn");
    1.15 +pref("datareporting.healthreport.logging.dumpEnabled", false);
    1.16 +pref("datareporting.healthreport.logging.dumpLevel", "Debug");
    1.17 +pref("datareporting.healthreport.lastDataSubmissionFailureTime", "0");
    1.18 +pref("datareporting.healthreport.lastDataSubmissionRequestedTime", "0");
    1.19 +pref("datareporting.healthreport.lastDataSubmissionSuccessfulTime", "0");
    1.20 +pref("datareporting.healthreport.nextDataSubmissionTime", "0");
    1.21 +pref("datareporting.healthreport.pendingDeleteRemoteData", false);
    1.22 +
    1.23 +// Health Report is enabled by default on all channels.
    1.24 +pref("datareporting.healthreport.uploadEnabled", true);
    1.25 +
    1.26 +pref("datareporting.healthreport.service.enabled", true);
    1.27 +pref("datareporting.healthreport.service.loadDelayMsec", 10000);
    1.28 +pref("datareporting.healthreport.service.loadDelayFirstRunMsec", 60000);
    1.29 +
    1.30 +pref("datareporting.healthreport.service.providerCategories",
    1.31 +#if MOZ_UPDATE_CHANNEL == release
    1.32 +    "healthreport-js-provider-default"
    1.33 +#elif MOZ_UPDATE_CHANNEL == default
    1.34 +    "healthreport-js-provider-default"
    1.35 +#else
    1.36 +    "healthreport-js-provider-default,healthreport-js-provider-@MOZ_UPDATE_CHANNEL@"
    1.37 +#endif
    1.38 +    );
    1.39 +
    1.40 +pref("datareporting.healthreport.about.reportUrl",   "https://fhr.cdn.mozilla.net/%LOCALE%/");

mercurial