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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 173133004: Separate pre-classification checks for client-side malware and phishing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix the service unit-test. Created 6 years, 9 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 055f7e7711e91fc629341a00effa2b741d257e1c..2a8f52eaa085809458b6080165f259b6c65b1403 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -18287,6 +18287,15 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="SBClientMalware.ClassificationStart">
+ <summary>
+ The number of pages that we could have possibly classified (essentially the
+ number of top page navigations by users with SBClientMalware enabled). The
+ name is slightly misleading as it is recorded before
+ &quot;Preclassification&quot; happens.
+ </summary>
+</histogram>
+
<histogram name="SBClientMalware.IPBlacklistRequestNetError"
enum="NetErrorCodes">
<summary>
@@ -18307,6 +18316,14 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="SBClientMalware.PreClassificationCheckFail"
+ enum="SBClientDetectionPreClassificationCheckFail">
+ <summary>
+ Records the number of malware classifications that were skipped because a
+ pre-classification check failed.
+ </summary>
+</histogram>
+
<histogram name="SBClientMalware.SentReports" enum="SBClientMalwareSentReports">
<summary>
Measures the success rate of sending malware reports. Sending a report can
@@ -18420,7 +18437,7 @@ other types of suffix sets.
</histogram>
<histogram name="SBClientPhishing.PreClassificationCheckFail"
- enum="SBClientPhishingPreClassificationCheckFail">
+ enum="SBClientDetectionPreClassificationCheckFail">
<summary>
Records the number of phishing classifications that were skipped because a
pre-classification check failed.
@@ -33587,6 +33604,19 @@ other types of suffix sets.
<int value="7" label="BACKUP_NETWORK_SUCCESS"/>
</enum>
+<enum name="SBClientDetectionPreClassificationCheckFail" type="int">
+ <int value="0" label="PROXY_FETCH"/>
+ <int value="1" label="PRIVATE_IP"/>
+ <int value="2" label="OFF_THE_RECORD"/>
+ <int value="3" label="MATCH_CSD_WHITELIST"/>
+ <int value="4" label="TOO_MANY_REPORTS"/>
+ <int value="5" label="UNSUPPORTED_MIME_TYPE"/>
+ <int value="6" label="NO_DATABASE_MANAGER"/>
+ <int value="7" label="KILLSWITCH"/>
+ <int value="8" label="CANCEL"/>
+ <int value="9" label="RESULT_FROM_CACHE"/>
+</enum>
+
<enum name="SBClientDownloadCheckDownloadStats" type="int">
<int value="0" label="INVALID_URL"/>
<int value="1" label="SB_DISABLED"/>
@@ -33666,15 +33696,6 @@ other types of suffix sets.
<int value="7" label="MODEL_INVALID_VERSION_NUMBER"/>
</enum>
-<enum name="SBClientPhishingPreClassificationCheckFail" type="int">
- <int value="0" label="PROXY_FETCH"/>
- <int value="1" label="PRIVATE_IP"/>
- <int value="2" label="OFF_THE_RECORD"/>
- <int value="3" label="MATCH_CSD_WHITELIST"/>
- <int value="4" label="TOO_MANY_REPORTS"/>
- <int value="5" label="UNSUPPORTED_MIME_TYPE"/>
-</enum>
-
<enum name="SBClientPhishingScorerCreationStatus" type="int">
<int value="0" label="SUCCESS"/>
<int value="1" label="MODEL_OPEN_FAIL"/>

Powered by Google App Engine
This is Rietveld 408576698