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

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

Issue 173133004: Separate pre-classification checks for client-side malware and phishing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge and fix issues in the histograms file. 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 5601bd130a893d026c95d98b4c7cbc2771666d40..db90154e3100db40c0ba094eb424446aa3a5bd40 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -21248,31 +21248,50 @@ other types of suffix sets.
</summary>
</histogram>
+<histogram name="SBClientMalware.ClassificationStart">
+ <owner>noelutz@chromium.org</owner>
+ <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">
- <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
+ <owner>noelutz@chromium.org</owner>
<summary>
The net error code for all ClientMalwareRequest URLFetchers.
</summary>
</histogram>
<histogram name="SBClientMalware.IPBlacklistRequestPayloadSize" units="bytes">
- <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
+ <owner>noelutz@chromium.org</owner>
<summary>
The size of the upload data for ClientMalwareRequest URLFetchers.
</summary>
</histogram>
<histogram name="SBClientMalware.IPBlacklistRequestResponseCode">
- <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
+ <owner>noelutz@chromium.org</owner>
<summary>
For ClientMalwareRequest URLFetchers with successful status, the HTTP
response code that was received.
</summary>
</histogram>
+<histogram name="SBClientMalware.PreClassificationCheckFail"
+ enum="SBClientDetectionPreClassificationCheckFail">
+ <owner>noelutz@chromium.org</owner>
+ <summary>
+ Records the number of malware classifications that were skipped because a
+ pre-classification check failed.
+ </summary>
+</histogram>
+
<histogram name="SBClientMalware.SentReports" enum="SBClientMalwareSentReports">
- <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
+ <owner>noelutz@chromium.org</owner>
<summary>
Measures the success rate of sending malware reports. Sending a report can
fail due to a client reaching the limit on the number of reports it can send
@@ -21399,8 +21418,8 @@ other types of suffix sets.
</histogram>
<histogram name="SBClientPhishing.PreClassificationCheckFail"
- enum="SBClientPhishingPreClassificationCheckFail">
- <owner>Please list the metric's owners. Add more owner tags as needed.</owner>
+ enum="SBClientDetectionPreClassificationCheckFail">
+ <owner>noelutz@chromium.org</owner>
<summary>
Records the number of phishing classifications that were skipped because a
pre-classification check failed.
@@ -37592,6 +37611,20 @@ 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"/>
+ <int value="10" label="NOT_HTTP_URL"/>
+</enum>
+
<enum name="SBClientDownloadCheckDownloadStats" type="int">
<int value="0" label="INVALID_URL"/>
<int value="1" label="SB_DISABLED"/>
@@ -37671,15 +37704,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