Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Unified Diff: components/metrics/metrics_service.cc

Issue 313613003: Increase "log too large" threshold in MetricsService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/metrics/metrics_service.cc
===================================================================
--- components/metrics/metrics_service.cc (revision 277793)
+++ components/metrics/metrics_service.cc (working copy)
@@ -222,7 +222,7 @@
// will discard the log, and not try to retransmit it. We also don't persist
// the log to the prefs for transmission during the next chrome session if this
// limit is exceeded.
-const size_t kUploadLogAvoidRetransmitSize = 50000;
+const size_t kUploadLogAvoidRetransmitSize = 100 * 1000;
Ilya Sherman 2014/06/17 21:02:48 nit: Do we want 1024 rather than 1000, so that we'
Alexei Svitkine (slow) 2014/06/19 19:28:36 Done.
// Interval, in minutes, between state saves.
const int kSaveStateIntervalMinutes = 5;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698