summaryrefslogtreecommitdiffstats
path: root/chrome/browser/metrics_log.cc
diff options
context:
space:
mode:
authorjar@google.com <jar@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-17 21:34:36 +0000
committerjar@google.com <jar@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-12-17 21:34:36 +0000
commit0b33f80b2ee413250b860e2b78851f1a3038dd61 (patch)
treec21dd9ce8242f5b5480398ce7ca3fdf3b3434bf2 /chrome/browser/metrics_log.cc
parentc9cb4f7e4669cc4b08e3177eed8f2cce59b72133 (diff)
downloadchromium_src-0b33f80b2ee413250b860e2b78851f1a3038dd61.zip
chromium_src-0b33f80b2ee413250b860e2b78851f1a3038dd61.tar.gz
chromium_src-0b33f80b2ee413250b860e2b78851f1a3038dd61.tar.bz2
Increase UMA upload interval, and upload usage stats more often
r=evanm Review URL: http://codereview.chromium.org/14186 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7165 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/metrics_log.cc')
-rw-r--r--chrome/browser/metrics_log.cc67
1 files changed, 52 insertions, 15 deletions
diff --git a/chrome/browser/metrics_log.cc b/chrome/browser/metrics_log.cc
index 16a24b7..5efcb47 100644
--- a/chrome/browser/metrics_log.cc
+++ b/chrome/browser/metrics_log.cc
@@ -305,6 +305,17 @@ std::string MetricsLog::GetInstallDate() const {
}
}
+void MetricsLog::RecordIncrementalStabilityElements() {
+ DCHECK(!locked_);
+
+ PrefService* pref = g_browser_process->local_state();
+ DCHECK(pref);
+
+ OPEN_ELEMENT_FOR_SCOPE("stability");
+ WriteRequiredStabilityElements(pref);
+ WriteRealtimeStabilityElements(pref);
+}
+
void MetricsLog::WriteStabilityElement() {
DCHECK(!locked_);
@@ -316,26 +327,17 @@ void MetricsLog::WriteStabilityElement() {
// sent, but that's true for all the metrics.
OPEN_ELEMENT_FOR_SCOPE("stability");
+ WriteRequiredStabilityElements(pref);
+ WriteRealtimeStabilityElements(pref);
- WriteIntAttribute("launchcount",
- pref->GetInteger(prefs::kStabilityLaunchCount));
- pref->SetInteger(prefs::kStabilityLaunchCount, 0);
- WriteIntAttribute("crashcount",
- pref->GetInteger(prefs::kStabilityCrashCount));
- pref->SetInteger(prefs::kStabilityCrashCount, 0);
+ // TODO(jar): The following are all optional, so we *could* optimize them for
+ // values of zero (and not include them).
WriteIntAttribute("incompleteshutdowncount",
pref->GetInteger(
prefs::kStabilityIncompleteSessionEndCount));
pref->SetInteger(prefs::kStabilityIncompleteSessionEndCount, 0);
- WriteIntAttribute("pageloadcount",
- pref->GetInteger(prefs::kStabilityPageLoadCount));
- pref->SetInteger(prefs::kStabilityPageLoadCount, 0);
- WriteIntAttribute("renderercrashcount",
- pref->GetInteger(prefs::kStabilityRendererCrashCount));
- pref->SetInteger(prefs::kStabilityRendererCrashCount, 0);
- WriteIntAttribute("rendererhangcount",
- pref->GetInteger(prefs::kStabilityRendererHangCount));
- pref->SetInteger(prefs::kStabilityRendererHangCount, 0);
+
+
WriteIntAttribute("breakpadregistrationok",
pref->GetInteger(prefs::kStabilityBreakpadRegistrationSuccess));
pref->SetInteger(prefs::kStabilityBreakpadRegistrationSuccess, 0);
@@ -395,6 +397,41 @@ void MetricsLog::WriteStabilityElement() {
}
}
+void MetricsLog::WriteRequiredStabilityElements(PrefService* pref) {
+ // The server refuses data that doesn't have certain values. crashcount and
+ // launchcount are currently "required" in the "stability" group.
+ WriteIntAttribute("launchcount",
+ pref->GetInteger(prefs::kStabilityLaunchCount));
+ pref->SetInteger(prefs::kStabilityLaunchCount, 0);
+ WriteIntAttribute("crashcount",
+ pref->GetInteger(prefs::kStabilityCrashCount));
+ pref->SetInteger(prefs::kStabilityCrashCount, 0);
+}
+
+void MetricsLog::WriteRealtimeStabilityElements(PrefService* pref) {
+ // Update the stats which are critical for real-time stability monitoring.
+ // Since these are "optional," only list ones that are non-zero, as the counts
+ // are aggergated (summed) server side.
+
+ int count = pref->GetInteger(prefs::kStabilityPageLoadCount);
+ if (count) {
+ WriteIntAttribute("pageloadcount", count);
+ pref->SetInteger(prefs::kStabilityPageLoadCount, 0);
+ }
+
+ count = pref->GetInteger(prefs::kStabilityRendererCrashCount);
+ if (count) {
+ WriteIntAttribute("renderercrashcount", count);
+ pref->SetInteger(prefs::kStabilityRendererCrashCount, 0);
+ }
+
+ count = pref->GetInteger(prefs::kStabilityRendererHangCount);
+ if (count) {
+ WriteIntAttribute("rendererhangcount", count);
+ pref->SetInteger(prefs::kStabilityRendererHangCount, 0);
+ }
+}
+
void MetricsLog::WritePluginList(
const std::vector<WebPluginInfo>& plugin_list) {
DCHECK(!locked_);