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

Side by Side Diff: tools/metrics/histograms/histograms.xml

Issue 15011004: Move Instant related histograms to tools/metrics/histograms/histograms.xml (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged in new values Created 7 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright 2013 The Chromium Authors. All rights reserved. 2 Copyright 2013 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 6
7 <!-- 7 <!--
8 This file is used to generate a comprehensive list of Chrome histograms along 8 This file is used to generate a comprehensive list of Chrome histograms along
9 with a detailed description for each histogram. 9 with a detailed description for each histogram.
10 10
(...skipping 860 matching lines...) Expand 10 before | Expand all | Expand 10 after
871 <histogram name="Import.ImporterType.BookmarksAPI" enum="ImporterType"> 871 <histogram name="Import.ImporterType.BookmarksAPI" enum="ImporterType">
872 <summary>The importer used on import from the bookmarks file API.</summary> 872 <summary>The importer used on import from the bookmarks file API.</summary>
873 </histogram> 873 </histogram>
874 874
875 <histogram name="Import.ImporterType.ImportDataHandler" enum="ImporterType"> 875 <histogram name="Import.ImporterType.ImportDataHandler" enum="ImporterType">
876 <summary> 876 <summary>
877 The importer used on import from the chrome://settings/importData UI. 877 The importer used on import from the chrome://settings/importData UI.
878 </summary> 878 </summary>
879 </histogram> 879 </histogram>
880 880
881 <histogram name="Instant.InstantControllerEvent" enum="InstantControllerEvent">
882 <summary>
883 Records various events of interest in the InstantController. E.g. When URLs
884 are blacklisted.
885 </summary>
886 </histogram>
887
888 <histogram name="Instant.SessionsStorageNamespace"
889 enum="InstantSessionStorageNamespace">
890 <summary>
891 How often an Instant preview is committed onto a different tab than it was
892 created from.
893 </summary>
894 </histogram>
895
896 <histogram name="Instant.TimeToFirstShow" units="milliseconds">
897 <summary>
898 The time between the first Omnibox interaction and when the Instant preview
899 shows. If the instant preview was already showing when the user interacted
900 with the omnibox, this histogram is not recorded.
901 </summary>
902 </histogram>
903
881 <histogram name="InstantExtended.InstantNavigation" 904 <histogram name="InstantExtended.InstantNavigation"
882 enum="InstantExtended_InstantNavigation"> 905 enum="InstantExtended_InstantNavigation">
883 <summary> 906 <summary>
884 Records a histogram for instant extended (Local NTP and Online NTP) and 907 Records a histogram for instant extended (Local NTP and Online NTP) and
885 non-extended navigations. 908 non-extended navigations.
886 </summary> 909 </summary>
887 </histogram> 910 </histogram>
888 911
912 <histogram name="InstantExtended.OptInState" enum="InstantExtended_OptInState">
913 <summary>
914 Records, on startup, whether the user has chosen to opt-in to or opt-out of
915 InstantExtended via chrome://flags.
916 </summary>
917 </histogram>
918
919 <histogram name="InstantExtended.PrefValue" enum="BooleanEnabled">
920 <summary>
921 Records, on startup, the value of the &quot;Allow your search engine to
922 provide Instant result&quot; preference setting for the first profile
923 loaded.
924 </summary>
925 </histogram>
926
889 <histogram name="LevelDBEnv.IDB.IOError" enum="LevelDBIOErrorMethods"> 927 <histogram name="LevelDBEnv.IDB.IOError" enum="LevelDBIOErrorMethods">
890 <summary> 928 <summary>
891 Methods where leveldb's Chromium environment has IO errors when being used 929 Methods where leveldb's Chromium environment has IO errors when being used
892 by IndexedDB. 930 by IndexedDB.
893 </summary> 931 </summary>
894 </histogram> 932 </histogram>
895 933
896 <histogram name="LevelDBEnv.IDB.IOError." enum="PlatformFileError"> 934 <histogram name="LevelDBEnv.IDB.IOError." enum="PlatformFileError">
897 <summary> 935 <summary>
898 PlatformFileErrors encountered by a single leveldb env method. 936 PlatformFileErrors encountered by a single leveldb env method.
(...skipping 8425 matching lines...) Expand 10 before | Expand all | Expand 10 after
9324 </enum> 9362 </enum>
9325 9363
9326 <enum name="IndexedDatabaseMethods" type="int"> 9364 <enum name="IndexedDatabaseMethods" type="int">
9327 <int value="0" label="CreateObjectStore()"/> 9365 <int value="0" label="CreateObjectStore()"/>
9328 <int value="1" label="DeleteObjectStore()"/> 9366 <int value="1" label="DeleteObjectStore()"/>
9329 <int value="2" label="Transaction()"/> 9367 <int value="2" label="Transaction()"/>
9330 <int value="3" label="DeleteDatabase()"/> 9368 <int value="3" label="DeleteDatabase()"/>
9331 <int value="4" label="Open()"/> 9369 <int value="4" label="Open()"/>
9332 </enum> 9370 </enum>
9333 9371
9372 <enum name="InstantControllerEvent" type="int">
9373 <int value="0" label="URL_ADDED_TO_BLACKLIST"/>
9374 <int value="1" label="URL_REMOVED_FROM_BLACKLIST"/>
9375 <int value="2" label="URL_BLOCKED_BY_BLACKLIST"/>
9376 </enum>
9377
9334 <enum name="InstantExtended_InstantNavigation" type="int"> 9378 <enum name="InstantExtended_InstantNavigation" type="int">
9335 <int value="0" label="Local click"/> 9379 <int value="0" label="Local click"/>
9336 <int value="1" label="Local submit"/> 9380 <int value="1" label="Local submit"/>
9337 <int value="2" label="Online click"/> 9381 <int value="2" label="Online click"/>
9338 <int value="3" label="Online submit"/> 9382 <int value="3" label="Online submit"/>
9339 <int value="4" label="Non-extended navigation"/> 9383 <int value="4" label="Non-extended navigation"/>
9340 </enum> 9384 </enum>
9341 9385
9386 <enum name="InstantExtended_OptInState" type="int">
9387 <int value="0" label="Default"/>
9388 <int value="1" label="Opted in"/>
9389 <int value="2" label="Opted out"/>
9390 <int value="3" label="Opted in local"/>
9391 <int value="4" label="Opted out local"/>
9392 <int value="5" label="Opted out both"/>
9393 </enum>
9394
9395 <enum name="InstantSessionStorageNamespace" type="int">
9396 <int value="0" label="different"/>
9397 <int value="1" label="identical"/>
9398 </enum>
9399
9342 <enum name="IntelMaxMicroArchitecture" type="int"> 9400 <enum name="IntelMaxMicroArchitecture" type="int">
9343 <int value="0" label="Pentium"/> 9401 <int value="0" label="Pentium"/>
9344 <int value="1" label="SSE"/> 9402 <int value="1" label="SSE"/>
9345 <int value="2" label="SSE2"/> 9403 <int value="2" label="SSE2"/>
9346 <int value="3" label="SSE3"/> 9404 <int value="3" label="SSE3"/>
9347 <int value="4" label="SSSE3"/> 9405 <int value="4" label="SSSE3"/>
9348 <int value="5" label="SSE4.1"/> 9406 <int value="5" label="SSE4.1"/>
9349 <int value="6" label="SSE4.3"/> 9407 <int value="6" label="SSE4.3"/>
9350 <int value="7" label="AVX"/> 9408 <int value="7" label="AVX"/>
9351 </enum> 9409 </enum>
(...skipping 1826 matching lines...) Expand 10 before | Expand all | Expand 10 after
11178 <affected-histogram name="NetConnectivity.Pipeline.4.Status"/> 11236 <affected-histogram name="NetConnectivity.Pipeline.4.Status"/>
11179 <affected-histogram name="NetConnectivity.Pipeline.5.NetworkError"/> 11237 <affected-histogram name="NetConnectivity.Pipeline.5.NetworkError"/>
11180 <affected-histogram name="NetConnectivity.Pipeline.5.ResponseCode"/> 11238 <affected-histogram name="NetConnectivity.Pipeline.5.ResponseCode"/>
11181 <affected-histogram name="NetConnectivity.Pipeline.5.Status"/> 11239 <affected-histogram name="NetConnectivity.Pipeline.5.Status"/>
11182 <affected-histogram name="NetConnectivity.Pipeline.AllHTTP11"/> 11240 <affected-histogram name="NetConnectivity.Pipeline.AllHTTP11"/>
11183 <affected-histogram name="NetConnectivity.Pipeline.CanarySuccess"/> 11241 <affected-histogram name="NetConnectivity.Pipeline.CanarySuccess"/>
11184 <affected-histogram name="NetConnectivity.Pipeline.Depth"/> 11242 <affected-histogram name="NetConnectivity.Pipeline.Depth"/>
11185 <affected-histogram name="NetConnectivity.Pipeline.Success"/> 11243 <affected-histogram name="NetConnectivity.Pipeline.Success"/>
11186 </fieldtrial> 11244 </fieldtrial>
11187 11245
11246 <fieldtrial name="Instant">
11247 <group name="Extended" label="Suggestions + Results"/>
11248 <group name="Instant" label="Results"/>
11249 <affected-histogram name="Instant.SessionsStorageNamespace"/>
11250 </fieldtrial>
11251
11188 <fieldtrial name="LateBindingExperiment"> 11252 <fieldtrial name="LateBindingExperiment">
11189 <group name="disable_late_binding" label="socket late binding is disabled"/> 11253 <group name="disable_late_binding" label="socket late binding is disabled"/>
11190 <group name="enable_late_binding" label="socket late binding is enabled"/> 11254 <group name="enable_late_binding" label="socket late binding is enabled"/>
11191 <affected-histogram name="Net.SocketIdleTimeBeforeNextUse_ReusedSocket"/> 11255 <affected-histogram name="Net.SocketIdleTimeBeforeNextUse_ReusedSocket"/>
11192 <affected-histogram name="Net.SocketIdleTimeBeforeNextUse_UnusedSocket"/> 11256 <affected-histogram name="Net.SocketIdleTimeBeforeNextUse_UnusedSocket"/>
11193 <affected-histogram name="Net.SocketIdleTimeOnIOError2_ReusedSocket"/> 11257 <affected-histogram name="Net.SocketIdleTimeOnIOError2_ReusedSocket"/>
11194 <affected-histogram name="Net.SocketIdleTimeOnIOError2_UnusedSocket"/> 11258 <affected-histogram name="Net.SocketIdleTimeOnIOError2_UnusedSocket"/>
11195 <affected-histogram name="Net.TCPSocketType"/> 11259 <affected-histogram name="Net.TCPSocketType"/>
11196 <affected-histogram name="Net.Transaction_Connected"/> 11260 <affected-histogram name="Net.Transaction_Connected"/>
11197 <affected-histogram name="Net.Transaction_Connected_Under_10"/> 11261 <affected-histogram name="Net.Transaction_Connected_Under_10"/>
(...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after
12063 <fieldtrial name="SSLResumption"> 12127 <fieldtrial name="SSLResumption">
12064 <group name="Resume_Handshake" label="Session Resumption"/> 12128 <group name="Resume_Handshake" label="Session Resumption"/>
12065 <group name="Full_Handshake" label="Full"/> 12129 <group name="Full_Handshake" label="Full"/>
12066 <affected-histogram name="Net.SSL_Connection_Latency"/> 12130 <affected-histogram name="Net.SSL_Connection_Latency"/>
12067 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> 12131 <affected-histogram name="Net.SSL_Connection_Latency_Google"/>
12068 </fieldtrial> 12132 </fieldtrial>
12069 12133
12070 </fieldtrials> 12134 </fieldtrials>
12071 12135
12072 </histogram-configuration> 12136 </histogram-configuration>
OLDNEW
« 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