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

Unified Diff: tools/metrics/histograms/histograms.xml

Issue 1404583004: Support gzip-compressed seed data from the variations server. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix signed-unsigned comparison issue Created 5 years, 2 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:
Download patch
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 0991e14cfccf8c60f6a666af0a66d50dfa232ad3..b79e4da4798d3c8f5f8422fdd9284de20e36101e 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -49494,6 +49494,23 @@ http://cs/file:chrome/histograms.xml - but prefer this file for new entries.
</summary>
</histogram>
+<histogram name="Variations.StoreSeed.GzipSize" units="KiB">
+ <owner>asvitkine@chromium.org</owner>
+ <summary>
+ Records the size of the gzip-compressed variations seed in KiB.
+ </summary>
+</histogram>
+
+<histogram name="Variations.StoreSeed.GzipSize.ReductionPercent" units="%">
+ <owner>asvitkine@chromium.org</owner>
+ <summary>
+ Records the size of the gzip-compressed variations seed as a percentage of
+ the decoded seed size. Note that variations seed could be first
+ delta-compressed and then gzip-compressed. In this case we record
+ gzip-compressed seed size as a percentage of the delta-compressed seed size.
+ </summary>
+</histogram>
+
<histogram name="Variations.StoreSeed.Size" units="KiB">
<owner>asvitkine@chromium.org</owner>
<summary>
@@ -74166,6 +74183,7 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="6" label="Failed - Delta: Read Seed"/>
<int value="7" label="Failed - Delta: Apply"/>
<int value="8" label="Failed - Delta: Store Seed"/>
+ <int value="9" label="Failed - Gzip Uncompress Error"/>
</enum>
<enum name="VaryType" type="int">

Powered by Google App Engine
This is Rietveld 408576698