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

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

Issue 15053003: Open Source AsyncDNS.*, DNS.* and DnsProbe.* histograms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copied DNS.ResolveUnspecWaste from internal histograms, moved DNS.EmptyAddressListAndNoError into s… 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 TODO(mlloyd): Refactor the XML so that field trials can be distinguished from 48 TODO(mlloyd): Refactor the XML so that field trials can be distinguished from
49 other types of suffix sets. 49 other types of suffix sets.
50 --> 50 -->
51 51
52 <histogram-configuration> 52 <histogram-configuration>
53 53
54 <!-- Histogram definitions --> 54 <!-- Histogram definitions -->
55 55
56 <histograms> 56 <histograms>
57 57
58 <histogram name="AsyncDNS.ConfigChange" enum="BooleanSuccess">
59 <summary>
60 Whether DnsConfigService::OnConfigChange actually corresponded to a change
61 in DnsConfig.
62 </summary>
63 </histogram>
64
65 <histogram name="AsyncDNS.ConfigNotifyInterval" units="milliseconds">
66 <summary>
67 Duration of time between calls to DnsConfigService::InvalidateConfig.
68 </summary>
69 </histogram>
70
71 <histogram name="AsyncDNS.ConfigParseDuration" units="milliseconds">
72 <summary>Duration of time spent parsing DnsConfig.</summary>
73 </histogram>
74
75 <histogram name="AsyncDNS.ConfigParsePosix" enum="AsyncDNSConfigParsePosix">
76 <summary>
77 Counts of results of parsing DnsConfig in DnsConfigServicePosix.
78 </summary>
79 </histogram>
80
81 <histogram name="AsyncDNS.ConfigParseResult" enum="BooleanSuccess">
82 <summary>Whether DnsConfig was parsed successfully.</summary>
83 </histogram>
84
85 <histogram name="AsyncDNS.ConfigParseWin" enum="AsyncDNSConfigParseWin">
86 <summary>
87 Counts of results of parsing DnsConfig in DnsConfigServiceWin.
88 </summary>
89 </histogram>
90
91 <histogram name="AsyncDNS.DNSChangerDetected" enum="BooleanSuccess">
92 <summary>
93 Whether the first valid DnsConfig included a rogue nameserver.
94 </summary>
95 </histogram>
96
97 <histogram name="AsyncDNS.DnsClientDisabledReason" enum="NetErrorCodes">
98 <summary>
99 Counts of specific error codes returned by DnsTask if a subsequent ProcTask
100 succeeded, at the end of a streak of failures after which the DnsClient was
101 disabled.
102 </summary>
103 </histogram>
104
105 <histogram name="AsyncDNS.DnsClientEnabled" enum="BooleanSuccess">
106 <summary>
107 TRUE counts the events when a valid DnsConfig is received and used to enable
108 DnsClient, while FALSE counts the events when DnsClient is disabled after a
109 series of successful fallbacks from DnsTask to ProcTask.
110 </summary>
111 </histogram>
112
113 <histogram name="AsyncDNS.FallbackFail" units="milliseconds">
114 <summary>
115 Duration of time spent by ProcTask in failing fallback resolutions.
116 </summary>
117 </histogram>
118
119 <histogram name="AsyncDNS.FallbackSuccess" units="milliseconds">
120 <summary>
121 Duration of time spent by ProcTask in successful fallback resolutions.
122 </summary>
123 </histogram>
124
125 <histogram name="AsyncDNS.HaveDnsConfig" enum="BooleanSuccess">
126 <summary>
127 Whether there was a valid DNS configuration at the start of a job which
128 eventually completed successfully.
129 </summary>
130 </histogram>
131
132 <histogram name="AsyncDNS.HostParseResult" enum="BooleanSuccess">
133 <summary>Whether DnsHosts were parsed successfully.</summary>
134 </histogram>
135
136 <histogram name="AsyncDNS.HostsChange" enum="BooleanSuccess">
137 <summary>
138 Whether DnsConfigService::OnHostsChange actually corresponded to a change in
139 DnsHosts.
140 </summary>
141 </histogram>
142
143 <histogram name="AsyncDNS.HostsNotifyInterval" units="milliseconds">
144 <summary>
145 Duration of time between calls to DnsConfigService::InvalidateHosts.
146 </summary>
147 </histogram>
148
149 <histogram name="AsyncDNS.HostsParseDuration" units="milliseconds">
150 <summary>Duration of time spent parsing DnsHosts.</summary>
151 </histogram>
152
153 <histogram name="AsyncDNS.HostsParseWin" enum="AsyncDNSHostsParseWin">
154 <summary>
155 Counts of results of parsing DnsHosts in DnsConfigServiceWin.
156 </summary>
157 </histogram>
158
159 <histogram name="AsyncDNS.HostsSize" units="bytes">
160 <summary>
161 The size of the HOSTS file observed before each attempt to parse it.
162 </summary>
163 </histogram>
164
165 <histogram name="AsyncDNS.JobQueueTime" units="milliseconds">
166 <summary>
167 Time elapsed between the time the HostResolverImpl::Job was created and the
168 time the Job was started (using DnsClient).
169 </summary>
170 </histogram>
171
172 <histogram name="AsyncDNS.JobQueueTime_HIGHEST" units="milliseconds">
173 <summary>
174 Time elapsed between the time the HostResolverImpl::Job was created and the
175 time the Job was started (using DnsClient). Includes only Jobs which had
176 priority HIGHEST when started.
177 </summary>
178 </histogram>
179
180 <histogram name="AsyncDNS.JobQueueTime_IDLE" units="milliseconds">
181 <summary>
182 Time elapsed between the time the HostResolverImpl::Job was created and the
183 time the Job was started (using DnsClient). Includes only Jobs which had
184 priority IDLE when started.
185 </summary>
186 </histogram>
187
188 <histogram name="AsyncDNS.JobQueueTime_LOW" units="milliseconds">
189 <summary>
190 Time elapsed between the time the HostResolverImpl::Job was created and the
191 time the Job was started (using DnsClient). Includes only Jobs which had
192 priority LOW when started.
193 </summary>
194 </histogram>
195
196 <histogram name="AsyncDNS.JobQueueTime_LOWEST" units="milliseconds">
197 <summary>
198 Time elapsed between the time the HostResolverImpl::Job was created and the
199 time the Job was started (using DnsClient). Includes only Jobs which had
200 priority LOWEST when started.
201 </summary>
202 </histogram>
203
204 <histogram name="AsyncDNS.JobQueueTime_MEDIUM" units="milliseconds">
205 <summary>
206 Time elapsed between the time the HostResolverImpl::Job was created and the
207 time the Job was started (using DnsClient). Includes only Jobs which had
208 priority MEDIUM when started.
209 </summary>
210 </histogram>
211
212 <histogram name="AsyncDNS.JobQueueTimeAfterChange" units="milliseconds">
213 <summary>
214 Time elapsed between the last time the priority of a HostResolverImpl::Job
215 changed (when a Request was attached or detached) and the time the Job was
216 started (using DnsClient).
217 </summary>
218 </histogram>
219
220 <histogram name="AsyncDNS.JobQueueTimeAfterChange_HIGHEST" units="milliseconds">
221 <summary>
222 Time elapsed between the last time the priority of a HostResolverImpl::Job
223 changed (when a Request was attached or detached) and the time the Job was
224 started (using DnsClient). Includes only Jobs which had priority HIGHEST
225 when started.
226 </summary>
227 </histogram>
228
229 <histogram name="AsyncDNS.JobQueueTimeAfterChange_IDLE" units="milliseconds">
230 <summary>
231 Time elapsed between the last time the priority of a HostResolverImpl::Job
232 changed (when a Request was attached or detached) and the time the Job was
233 started (using DnsClient). Includes only Jobs which had priority IDLE when
234 started.
235 </summary>
236 </histogram>
237
238 <histogram name="AsyncDNS.JobQueueTimeAfterChange_LOW" units="milliseconds">
239 <summary>
240 Time elapsed between the last time the priority of a HostResolverImpl::Job
241 changed (when a Request was attached or detached) and the time the Job was
242 started (using DnsClient). Includes only Jobs which had priority LOW when
243 started.
244 </summary>
245 </histogram>
246
247 <histogram name="AsyncDNS.JobQueueTimeAfterChange_LOWEST" units="milliseconds">
248 <summary>
249 Time elapsed between the last time the priority of a HostResolverImpl::Job
250 changed (when a Request was attached or detached) and the time the Job was
251 started (using DnsClient). Includes only Jobs which had priority LOWEST when
252 started.
253 </summary>
254 </histogram>
255
256 <histogram name="AsyncDNS.JobQueueTimeAfterChange_MEDIUM" units="milliseconds">
257 <summary>
258 Time elapsed between the last time the priority of a HostResolverImpl::Job
259 changed (when a Request was attached or detached) and the time the Job was
260 started (using DnsClient). Includes only Jobs which had priority MEDIUM when
261 started.
262 </summary>
263 </histogram>
264
265 <histogram name="AsyncDNS.ParseToAddressList" enum="AsyncDNSParseResult">
266 <summary>
267 Counts of results of parsing addresses out of DNS responses in successful
268 DnsTransactions.
269 </summary>
270 </histogram>
271
272 <histogram name="AsyncDNS.ResolveError" enum="NetErrorCodes">
273 <summary>
274 Counts of specific error codes returned by DnsTask if a subsequent ProcTask
275 succeeded.
276 </summary>
277 </histogram>
278
279 <histogram name="AsyncDNS.ResolveFail" units="milliseconds">
280 <summary>
281 Duration of time taken by DnsTask in resolutions that failed. Excludes time
282 spent in the subsequent fallback.
283 </summary>
284 </histogram>
285
286 <histogram name="AsyncDNS.ResolveStatus" enum="AsyncDNSResolveStatus">
287 <summary>
288 Counts of the overall results of using asynchronous DNS in HostResolverImpl.
289 This only includes jobs started with valid DNS configuration and excludes
290 synchronous resolutions (as IP literals, from cache, and from HOSTS).
291 </summary>
292 </histogram>
293
294 <histogram name="AsyncDNS.ResolveSuccess" units="milliseconds">
295 <summary>
296 Duration of time taken by DnsTask in resolutions that succeeded.
297 </summary>
298 </histogram>
299
300 <histogram name="AsyncDNS.ResolveSuccess_FAMILY_IPV4" units="milliseconds">
301 <summary>
302 Same as AsyncDNS.ResolveSuccess, but limited to pure IPv4 lookups.
303 </summary>
304 </histogram>
305
306 <histogram name="AsyncDNS.ResolveSuccess_FAMILY_IPV6" units="milliseconds">
307 <summary>
308 Same as AsyncDNS.ResolveSuccess, but limited to pure IPv6 lookups.
309 </summary>
310 </histogram>
311
312 <histogram name="AsyncDNS.ResolveSuccess_FAMILY_UNSPEC" units="milliseconds">
313 <summary>
314 Same as AsyncDNS.ResolveSuccess, but limited to IPv4/IPv6 lookups.
315 </summary>
316 </histogram>
317
318 <histogram name="AsyncDNS.SortFailure" units="milliseconds">
319 <summary>
320 Duration of time taken in failing calls to AddressSorter in dual-stack
321 resolutions using DnsTask.
322 </summary>
323 </histogram>
324
325 <histogram name="AsyncDNS.SortSuccess" units="milliseconds">
326 <summary>
327 Duration of time taken in successful calls to AddressSorter in dual-stack
328 resolutions using DnsTask.
329 </summary>
330 </histogram>
331
332 <histogram name="AsyncDNS.TotalTime" units="milliseconds">
333 <summary>
334 Duration of time since a HostResolverImpl::Resolve request to the time a
335 result is posted. Excludes canceled, evicted, and aborted requests. Includes
336 cache hits (recorded as 0). Excludes speculative requests.
337 </summary>
338 </histogram>
339
340 <histogram name="AsyncDNS.TotalTime_speculative" units="milliseconds">
341 <summary>
342 Duration of time since a HostResolverImpl::Resolve request to the time a
343 result is posted. Excludes canceled, evicted, and aborted requests. Includes
344 cache hits (recorded as 0). Speculative requests only.
345 </summary>
346 </histogram>
347
348 <histogram name="AsyncDNS.TransactionFailure" units="milliseconds">
349 <summary>
350 Duration of time taken in failing DnsTransactions. This includes server
351 failures, timeouts and NXDOMAIN results.
352 </summary>
353 </histogram>
354
355 <histogram name="AsyncDNS.TransactionSuccess" units="milliseconds">
356 <summary>
357 Duration of time taken in successful DnsTransactions. This includes all
358 NOERROR answers, even if they indicate the name has no addresses or they
359 cannot be parsed.
360 </summary>
361 </histogram>
362
363 <histogram name="AsyncDNS.TransactionSuccess_A" units="milliseconds">
364 <summary>
365 Same as AsyncDNS.TransactionSuccess but limited to A query type.
366 </summary>
367 </histogram>
368
369 <histogram name="AsyncDNS.TransactionSuccess_AAAA" units="milliseconds">
370 <summary>
371 Same as AsyncDNS.TransactionSuccess but limited to AAAA query type.
372 </summary>
373 </histogram>
374
375 <histogram name="AsyncDNS.TTL" units="milliseconds">
376 <summary>
377 TTL of the resolved addresses, as in the response received from the server.
378 For results served from local cache, the TTL is from the original response.
379 </summary>
380 </histogram>
381
382 <histogram name="AsyncDNS.UDPAttemptFail" units="milliseconds">
383 <summary>
384 Duration of time taken by DnsUDPAttempt in failed attempts. Excludes
385 timeouts.
386 </summary>
387 </histogram>
388
389 <histogram name="AsyncDNS.UDPAttemptSuccess" units="milliseconds">
390 <summary>
391 Duration of time taken by DnsUDPAttempt in successful attempts. Includes
392 responses arriving after timeout, if multiple attempts are allowed.
393 </summary>
394 </histogram>
395
396 <histogram name="AsyncDNS.UnchangedConfigInterval" units="milliseconds">
397 <summary>
398 Duration of time since the last empty config result to the time a non-change
399 OnConfigChange is received.
400 </summary>
401 </histogram>
402
403 <histogram name="AsyncDNS.UnchangedHostsInterval" units="milliseconds">
404 <summary>
405 Duration of time since the last empty config result to the time a non-change
406 OnHostsChange is received.
407 </summary>
408 </histogram>
409
58 <histogram name="Autocheckout.Bubble" enum="AutocheckoutBubble"> 410 <histogram name="Autocheckout.Bubble" enum="AutocheckoutBubble">
59 <summary> 411 <summary>
60 Measures the frequency of user interactions with the Autocheckout bubble, 412 Measures the frequency of user interactions with the Autocheckout bubble,
61 which prompts users to invoke Autocheckout on supported websites. 413 which prompts users to invoke Autocheckout on supported websites.
62 </summary> 414 </summary>
63 </histogram> 415 </histogram>
64 416
65 <histogram name="Autocheckout.BuyFlow" enum="AutocheckoutBuyFlow"> 417 <histogram name="Autocheckout.BuyFlow" enum="AutocheckoutBuyFlow">
66 <summary> 418 <summary>
67 Measures the frequency of final states reached in Autocheckout buy flow. 419 Measures the frequency of final states reached in Autocheckout buy flow.
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
487 <histogram name="DiskCache.TotalIOTime" units="milliseconds"> 839 <histogram name="DiskCache.TotalIOTime" units="milliseconds">
488 <obsolete> 840 <obsolete>
489 Deprecated. 841 Deprecated.
490 </obsolete> 842 </obsolete>
491 <summary> 843 <summary>
492 The total time it takes to perform a payload IO operation, for the regular 844 The total time it takes to perform a payload IO operation, for the regular
493 disk cache. 845 disk cache.
494 </summary> 846 </summary>
495 </histogram> 847 </histogram>
496 848
849 <histogram name="DNS.AttemptCancelled">
850 <summary>
851 The attempt which completed after the job was already cancelled.
852 </summary>
853 </histogram>
854
855 <histogram name="DNS.AttemptDiscarded">
856 <summary>
857 The attempt which completed after the job was already cancelled OR the
858 attempt that has finished after host resolution was already completed by an
859 earlier attempt.
860 </summary>
861 </histogram>
862
863 <histogram name="DNS.AttemptFailDuration" units="milliseconds">
864 <summary>
865 Duration of time taken in OS resolutions for actual navigations. These
866 attempts which completed after the job was already canceled OR after the job
867 was already completed by an earlier attempt. Note that cached resolutions
868 may provide low (0ms?) resolution times.
869 </summary>
870 </histogram>
871
872 <histogram name="DNS.AttemptFailure">
873 <summary>The attempt that has not resolved the host successfully.</summary>
874 </histogram>
875
876 <histogram name="DNS.AttemptFirstFailure">
877 <summary>
878 The attempt that resolved the host first and the resolution was not
879 successful.
880 </summary>
881 </histogram>
882
883 <histogram name="DNS.AttemptFirstSuccess">
884 <summary>
885 The attempt that resolved the host first and the resolution was successful.
886 </summary>
887 </histogram>
888
889 <histogram name="DNS.AttemptSuccess">
890 <summary>The attempt that has resolved the host successfully.</summary>
891 </histogram>
892
893 <histogram name="DNS.AttemptSuccessDuration" units="milliseconds">
894 <summary>
895 Duration of time taken in OS resolutions that succeeded and were requested
896 for actual navigations. These attempts which completed after the job was
897 already canceled OR after the job was already completed by an earlier
898 attempt. Note that cached resolutions may provide low (0ms?) resolution
899 times.
900 </summary>
901 </histogram>
902
903 <histogram name="DNS.AttemptTimeSavedByRetry" units="milliseconds">
904 <summary>
905 This histogram shows the time saved by having spawned an extra attempt, when
906 the first attempt didn't finish before retry attempt.
907 </summary>
908 </histogram>
909
910 <histogram name="DNS.CacheEvicted" units="milliseconds">
911 <summary>
912 The time left to expiration of an entry when it is removed while compacting
913 the HostCache.
914 </summary>
915 </histogram>
916
917 <histogram name="DNS.CacheExpired" units="milliseconds">
918 <summary>
919 The time since expiration of an entry when it is removed while compacting
920 the HostCache.
921 </summary>
922 </histogram>
923
924 <histogram name="DNS.CacheExpiredOnGet" units="milliseconds">
925 <summary>
926 The time since expiration of an entry when it is removed on lookup.
927 </summary>
928 </histogram>
929
930 <histogram name="DNS.IndependentFailedNavigation" units="milliseconds">
931 <summary>
932 When either a pre-resolution was not done recently enough to provide
933 benefit, or the the corresponding pre-resolution is still pending, this
934 histogram shows the duration of time used to resolve a hostname as not
935 existing during a failed attempt to navigate to (GET) a URL. In newer
936 versions, if the hostname has never been found as a link during a page scan,
937 and it has a referring URL, then it is added to referrer list data structure
938 (hoping we'll do better next time).
939 </summary>
940 </histogram>
941
942 <histogram name="DNS.IndependentNavigation" units="milliseconds">
943 <summary>
944 When either a pre-resolution was not done recently enough to provide
945 benefit, or the the corresponding pre-resolution is still pending, this
946 histogram shows the duration of the duration of time used to resolve a
947 hostname to navigate to (GET) a URL. In newer versions, if the hostname has
948 never been found as a link during a page scan, and it has a referring URL,
949 then it is added to referrer list data structure (hoping we'll do better
950 next time).
951 </summary>
952 </histogram>
953
954 <histogram name="DNS.JobQueueTime" units="milliseconds">
955 <summary>
956 Time elapsed between the time the HostResolverImpl::Job was created and the
957 time the Job was started (a getaddrinfo call was dispatched to the thread
958 pool).
959 </summary>
960 </histogram>
961
962 <histogram name="DNS.JobQueueTime_HIGHEST" units="milliseconds">
963 <summary>
964 Time elapsed between the time the HostResolverImpl::Job was created and the
965 time the Job was started (a getaddrinfo call was dispatched to the thread
966 pool). Includes only Jobs which had priority HIGHEST when started.
967 </summary>
968 </histogram>
969
970 <histogram name="DNS.JobQueueTime_IDLE" units="milliseconds">
971 <summary>
972 Time elapsed between the time the HostResolverImpl::Job was created and the
973 time the Job was started (a getaddrinfo call was dispatched to the thread
974 pool). Includes only Jobs which had priority IDLE when started.
975 </summary>
976 </histogram>
977
978 <histogram name="DNS.JobQueueTime_LOW" units="milliseconds">
979 <summary>
980 Time elapsed between the time the HostResolverImpl::Job was created and the
981 time the Job was started (a getaddrinfo call was dispatched to the thread
982 pool). Includes only Jobs which had priority LOW when started.
983 </summary>
984 </histogram>
985
986 <histogram name="DNS.JobQueueTime_LOWEST" units="milliseconds">
987 <summary>
988 Time elapsed between the time the HostResolverImpl::Job was created and the
989 time the Job was started (a getaddrinfo call was dispatched to the thread
990 pool). Includes only Jobs which had priority LOWEST when started.
991 </summary>
992 </histogram>
993
994 <histogram name="DNS.JobQueueTime_MEDIUM" units="milliseconds">
995 <summary>
996 Time elapsed between the time the HostResolverImpl::Job was created and the
997 time the Job was started (a getaddrinfo call was dispatched to the thread
998 pool). Includes only Jobs which had priority MEDIUM when started.
999 </summary>
1000 </histogram>
1001
1002 <histogram name="DNS.JobQueueTimeAfterChange" units="milliseconds">
1003 <summary>
1004 Time elapsed between the last time the priority of a HostResolverImpl::Job
1005 changed (when a Request was attached or detached) and the time the Job was
1006 started (a getaddrinfo call was dispatched to the thread pool).
1007 </summary>
1008 </histogram>
1009
1010 <histogram name="DNS.JobQueueTimeAfterChange_HIGHEST" units="milliseconds">
1011 <summary>
1012 Time elapsed between the last time the priority of a HostResolverImpl::Job
1013 changed (when a Request was attached or detached) and the time the Job was
1014 started (a getaddrinfo call was dispatched to the thread pool). Includes
1015 only Jobs which had priority HIGHEST when started.
1016 </summary>
1017 </histogram>
1018
1019 <histogram name="DNS.JobQueueTimeAfterChange_IDLE" units="milliseconds">
1020 <summary>
1021 Time elapsed between the last time the priority of a HostResolverImpl::Job
1022 changed (when a Request was attached or detached) and the time the Job was
1023 started (a getaddrinfo call was dispatched to the thread pool). Includes
1024 only Jobs which had priority IDLE when started.
1025 </summary>
1026 </histogram>
1027
1028 <histogram name="DNS.JobQueueTimeAfterChange_LOW" units="milliseconds">
1029 <summary>
1030 Time elapsed between the last time the priority of a HostResolverImpl::Job
1031 changed (when a Request was attached or detached) and the time the Job was
1032 started (a getaddrinfo call was dispatched to the thread pool). Includes
1033 only Jobs which had priority LOW when started.
1034 </summary>
1035 </histogram>
1036
1037 <histogram name="DNS.JobQueueTimeAfterChange_LOWEST" units="milliseconds">
1038 <summary>
1039 Time elapsed between the last time the priority of a HostResolverImpl::Job
1040 changed (when a Request was attached or detached) and the time the Job was
1041 started (a getaddrinfo call was dispatched to the thread pool). Includes
1042 only Jobs which had priority LOWEST when started.
1043 </summary>
1044 </histogram>
1045
1046 <histogram name="DNS.JobQueueTimeAfterChange_MEDIUM" units="milliseconds">
1047 <summary>
1048 Time elapsed between the last time the priority of a HostResolverImpl::Job
1049 changed (when a Request was attached or detached) and the time the Job was
1050 started (a getaddrinfo call was dispatched to the thread pool). Includes
1051 only Jobs which had priority MEDIUM when started.
1052 </summary>
1053 </histogram>
1054
1055 <histogram name="DNS.PrefetchCacheEviction" units="milliseconds">
1056 <summary>
1057 The duration of time used (most recently) to pre-resolve a hostname, when
1058 the prefetched resolution was apparently evicted from the cache. The
1059 included samples only list pre-resolution times when the later
1060 navigations/fetches took in excess of 15ms.
1061 </summary>
1062 </histogram>
1063
1064 <histogram name="DNS.PrefetchCacheEvictionL" units="milliseconds">
1065 <summary>
1066 The duration of time used (most recently) to pre-resolve a hostname, when
1067 the prefetched resolution was apparently evicted from the cache. The
1068 included samples only list pre-resolution times when the later
1069 navigations/fetches took in excess of 15ms.
1070 </summary>
1071 </histogram>
1072
1073 <histogram name="DNS.PrefetchFoundName">
1074 <summary>Replaced by DNS.PrefetchFoundNameL.</summary>
1075 </histogram>
1076
1077 <histogram name="DNS.PrefetchFoundNameL" units="milliseconds">
1078 <obsolete>
1079 Deprecated 2/2010, and replaced by DNS.PrefetchResolution
1080 </obsolete>
1081 <summary>
1082 The duration of time used by the DNS pre-resolving threads to resolve a host
1083 name via the network. Any resolutions that are faster than 15ms are
1084 considered to be local cache hits, not requiring network access, and are not
1085 included in this histogram. This histogram is most useful for estimating the
1086 typical cost of a name resolution, but it also estimates the total number of
1087 network-based resolutions induced by this feature. Not all these
1088 resolutions prove helpful (i.e., the user does not always actually visit the
1089 resolved hostnames).
1090 </summary>
1091 </histogram>
1092
1093 <histogram name="DNS.PrefetchNegativeHit">
1094 <summary>Replaced by DNS.PrefetchNegativeHitL.</summary>
1095 </histogram>
1096
1097 <histogram name="DNS.PrefetchNegativeHitL" units="milliseconds">
1098 <summary>
1099 The duration of time saved due to DNS pre-resolving in the &quot;name not
1100 found&quot; case. Time &quot;savings&quot; shown in the histogram are
1101 defined to be the difference between the DNS pre-resolution duration, and
1102 the DNS resolution duration seen during a navigation. These cache hits only
1103 list events where the DNS pre-resolve duration for a host was in excess of
1104 15ms (i.e., the network was consulted), and the actual DNS resolution (when
1105 a user attempted to navigate to a link with the same host name) took less
1106 than 15ms (i.e., the network was not consulted), which means the gain was a
1107 result of a &quot;cache hit&quot; in the OS cache. For some users with
1108 LANs, all negative results (even when the DNS cache might otherwise help)
1109 take about 2.5 seconds (due to timeouts for netbios broadcasts), and hence
1110 no savings are possible (or shown) for such users in this category.
1111 </summary>
1112 </histogram>
1113
1114 <histogram name="DNS.PrefetchPositiveHit">
1115 <summary>Replaced by DNS.PrefetchPositiveHitL.</summary>
1116 </histogram>
1117
1118 <histogram name="DNS.PrefetchPositiveHitL" units="milliseconds">
1119 <summary>
1120 The duration of time saved due to DNS pre-resolving in the &quot;name was
1121 found&quot; case, and induced by either a page scan for a link or an omnibox
1122 entry by the user. Time &quot;savings&quot; shown in the histogram are
1123 defined to be the difference between the DNS pre-resolution duration, and
1124 the DNS resolution duration seen during a navigation. These cache hits only
1125 list events where the DNS pre-resolve duration for a host was in excess of
1126 15ms (i.e., the network was consulted), and the actual DNS resolution (when
1127 a user attempted to navigate to a link with the same host name) took less
1128 than 15ms (i.e., the network was not consulted), which means the gain was a
1129 result of a &quot;cache hit&quot; in the OS cache.
1130 </summary>
1131 </histogram>
1132
1133 <histogram name="DNS.PrefetchQueue" units="milliseconds">
1134 <summary>
1135 The duration of time spent by a proposed resolution waiting in the queue to
1136 be resolved. This number is in addition to any DNS resolution time that may
1137 come later.
1138 </summary>
1139 </histogram>
1140
1141 <histogram name="DNS.PrefetchReferredPositiveHit" units="milliseconds">
1142 <summary>
1143 The duration of time saved due to DNS pre-resolving in the &quot;name was
1144 found&quot; case, and induced by predicting (using referrer lists) that a
1145 resolution was needed. Time &quot;savings&quot; shown in the histogram are
1146 defined to be the difference between the DNS pre-resolution duration, and
1147 the DNS resolution duration seen during a navigation. These cache hits only
1148 list events where the DNS pre-resolve duration for a host was in excess of
1149 15ms (i.e., the network was consulted), and the actual DNS resolution (when
1150 a user attempted to navigate to a link with the same host name) took less
1151 than 15ms (i.e., the network was not consulted), which means the gain was a
1152 result of a &quot;cache hit&quot; in the OS cache.
1153 </summary>
1154 </histogram>
1155
1156 <histogram name="DNS.PrefetchResolution" units="milliseconds">
1157 <summary>
1158 The duration of time used by the DNS pre-resolving threads to resolve a host
1159 name via the network. Any resolutions that are faster than 15ms are
1160 considered to be local cache hits, not requiring network access, and are not
1161 included in this histogram. This histogram is most useful for estimating the
1162 typical cost of a name resolution, but it also estimates the total number of
1163 network-based resolutions induced by this feature. Not all these
1164 resolutions prove helpful (i.e., the user does not always actually visit the
1165 resolved hostnames).
1166 </summary>
1167 </histogram>
1168
1169 <histogram name="DNS.QueueRecycledDeltaOver2">
1170 <summary>
1171 When, due to congestion avoidance, a queued pre-resolution is abandoned
1172 (recycled) without actually being resolved, this histograms records the age
1173 in the queue of that entry. Only times over 2 seconds are recorded in this
1174 histogram.
1175 </summary>
1176 </histogram>
1177
1178 <histogram name="DNS.QueueRecycledUnder2">
1179 <summary>
1180 When, due to congestion avoidance, a queued pre-resolution is abandoned
1181 (recycled) without actually being resolved, this histograms records the age
1182 in the queue of that entry. Only times less than or equal to 2 seconds are
1183 recorded in this histogram.
1184 </summary>
1185 </histogram>
1186
1187 <histogram name="DNS.ResolveCategory" enum="ResolutionCategory">
1188 <summary>
1189 Counts of successes and failures of OS resolutions in various categories.
1190 </summary>
1191 </histogram>
1192
1193 <histogram name="DNS.ResolveFail" units="milliseconds">
1194 <summary>
1195 Duration of time taken in OS resolutions for actual navigations. Note that
1196 cached OS resolutions may provide low (0ms?) resolution times.
1197 </summary>
1198 </histogram>
1199
1200 <histogram name="DNS.ResolveFail_FAMILY_IPV4" units="milliseconds">
1201 <summary>Same as DNS.ResolveFail, but limited to pure IPv4 lookups.</summary>
1202 </histogram>
1203
1204 <histogram name="DNS.ResolveFail_FAMILY_IPV6" units="milliseconds">
1205 <summary>Same as DNS.ResolveFail, but limited to pure IPv6 lookups.</summary>
1206 </histogram>
1207
1208 <histogram name="DNS.ResolveFail_FAMILY_UNSPEC" units="milliseconds">
1209 <summary>Same as DNS.ResolveFail, but limited to IPv4/IPv6 lookups.</summary>
1210 </histogram>
1211
1212 <histogram name="DNS.ResolveSpeculativeFail" units="milliseconds">
1213 <summary>
1214 Duration of time taken in speculative OS resolutions. Note that cached OS
1215 resolutions may provide low (0ms?) resolution times.
1216 </summary>
1217 </histogram>
1218
1219 <histogram name="DNS.ResolveSpeculativeSuccess" units="milliseconds">
1220 <summary>
1221 Duration of time taken in speculative OS resolution that succeeded. Note
1222 that cached resolutions may provide low (0ms?) resolution times.
1223 </summary>
1224 </histogram>
1225
1226 <histogram name="DNS.ResolveSuccess" units="milliseconds">
1227 <summary>
1228 Duration of time taken in OS resolutions that succeeded and were requested
1229 for actual navigations. Note that cached resolutions may provide low (0ms?)
1230 resolution times.
1231 </summary>
1232 </histogram>
1233
1234 <histogram name="DNS.ResolveSuccess_FAMILY_IPV4" units="milliseconds">
1235 <summary>
1236 Same as DNS.ResolveSuccess, but limited to pure IPv4 lookups.
1237 </summary>
1238 </histogram>
1239
1240 <histogram name="DNS.ResolveSuccess_FAMILY_IPV6" units="milliseconds">
1241 <summary>
1242 Same as DNS.ResolveSuccess, but limited to pure IPv6 lookups.
1243 </summary>
1244 </histogram>
1245
1246 <histogram name="DNS.ResolveSuccess_FAMILY_UNSPEC" units="milliseconds">
1247 <summary>
1248 Same as DNS.ResolveSuccess, but limited to IPv4/IPv6 lookups.
1249 </summary>
1250 </histogram>
1251
1252 <histogram name="DNS.ResolveUnspecWaste" enum="ResolutionUnspecWasteCategory">
1253 <summary>
1254 Counts of hits and misses in the DNS cache and DNS jobs pool of wasted
1255 HostResolverImpl::Jobs that could be avoided by always resolving using
1256 AF_UNSPEC.
1257 </summary>
1258 </histogram>
1259
1260 <histogram name="DNS.TotalTime" units="milliseconds">
1261 <summary>
1262 Duration of time since a HostResolverImpl::Resolve request to the time a
1263 result is posted. Excludes canceled, evicted, and aborted requests. Includes
1264 cache hits (recorded as 0). Excludes speculative requests.
1265 </summary>
1266 </histogram>
1267
1268 <histogram name="DNS.TotalTime_speculative" units="milliseconds">
1269 <summary>
1270 Duration of time since a HostResolverImpl::Resolve request to the time a
1271 result is posted. Excludes canceled, evicted, and aborted requests. Includes
1272 cache hits (recorded as 0). Speculative requests only.
1273 </summary>
1274 </histogram>
1275
1276 <histogram name="DNS.UnexpectedResolution">
1277 <summary>
1278 In some cases, such as when content arrives with embedded references to
1279 other servers, the prefetch system can't (or doesn't) attempt to pre-resolve
1280 the hostnames. As an example, a visit to www.cnn.com will fetch content
1281 with references to about 12 additional hostnames, none of which are
1282 currently anticipated. Such resolutions are termed &quot;Unexpected
1283 Resolutions,&quot; and the durations associated with those DNS resolutions
1284 are shown below. Future features may attempt to learn (from prior
1285 experience locally, or from server provided hints), what secondary hostname
1286 resolutions should be done when a primary resolution (or navigation) takes
1287 place. This histogram shows what the potential savings are that
1288 &quot;remain on the table&quot; until we employ some of these more advanced
1289 features.
1290 </summary>
1291 </histogram>
1292
1293 <histogram name="DNS.UnexpectedResolutionL">
1294 <summary>
1295 In some cases, such as when content arrives with embedded references to
1296 other servers, or when a page (such as one in SSL) preclude scanning and
1297 prefetching, the prefetch system can't (or doesn't) attempt to pre-resolve
1298 the hostnames. As an example, a visit to www.cnn.com will fetch content
1299 with references to about 12 additional hostnames, none of which might be
1300 anticipated. Similarly, clicking on a link in an SSL page won't be
1301 anticipated (since scanning in not allowed by default). Such resolutions are
1302 termed &quot;Unexpected Resolutions,&quot; and the durations associated with
1303 those navigation induced DNS resolutions are shown below. If a referring
1304 URL is available for the navigation, the relationship to the referring URL
1305 was recorded, and future navigations to the referring hostname would have
1306 induced a pre-resolution of hostname that caused an entry below. Such any
1307 entry may facilitate future listing in the ReferredPositiveHit histogram.
1308 </summary>
1309 </histogram>
1310
1311 <histogram name="DnsProbe.Probe.Elapsed" units="ms">
1312 <summary>Time between starting and finishing DNS probe.</summary>
1313 </histogram>
1314
1315 <histogram name="DnsProbe.Probe.NcnOffline.Elapsed" units="ms">
1316 <summary>
1317 Time between starting and finishing DNS probe when NCN says we're offline.
1318 </summary>
1319 </histogram>
1320
1321 <histogram name="DnsProbe.Probe.NcnOffline.Result" enum="DnsProbe.Probe.Result">
1322 <summary>
1323 Result of DNS probes sent by the probe service when NCN says we're offline.
1324 </summary>
1325 </histogram>
1326
1327 <histogram name="DnsProbe.Probe.NcnOnline.Elapsed" units="ms">
1328 <summary>
1329 Time between starting and finishing DNS probe when NCN says we're online.
1330 </summary>
1331 </histogram>
1332
1333 <histogram name="DnsProbe.Probe.NcnOnline.Result" enum="DnsProbe.Probe.Result">
1334 <summary>
1335 Result of DNS probes sent by the probe service when NCN says we're online.
1336 </summary>
1337 </histogram>
1338
1339 <histogram name="DnsProbe.Probe.Result" enum="DnsProbe.Probe.Result">
1340 <summary>Result of DNS probes sent by the probe service.</summary>
1341 </histogram>
1342
1343 <histogram name="DnsProbe.Probe.ResultBadConfig.Elapsed" units="ms">
1344 <summary>Elapsed time of DNS probes that return PROBE_BAD_CONFIG.</summary>
1345 </histogram>
1346
1347 <histogram name="DnsProbe.Probe.ResultBadConfig.SystemIsLocalhost"
1348 enum="DnsProbe.Probe.SystemIsLocalhost">
1349 <summary>
1350 Whether the only nameserver in the system DNS config was 127.0.0.1 when the
1351 probe result was BAD_CONFIG.
1352 </summary>
1353 </histogram>
1354
1355 <histogram name="DnsProbe.Probe.ResultBadConfig.SystemJobResult"
1356 enum="DnsProbe.Job.Result">
1357 <summary>
1358 The result of the system probe job when the overall probe result was
1359 BAD_CONFIG.
1360 </summary>
1361 </histogram>
1362
1363 <histogram name="DnsProbe.Probe.ResultBadConfig.SystemNameserverCount">
1364 <summary>
1365 The number of nameservers in the system DNS config when the probe result was
1366 BAD_CONFIG.
1367 </summary>
1368 </histogram>
1369
1370 <histogram name="DnsProbe.Probe.ResultNoInternet.Elapsed" units="ms">
1371 <summary>Elapsed time of DNS probes that return PROBE_NO_INTERNET.</summary>
1372 </histogram>
1373
1374 <histogram name="DnsProbe.Probe.ResultNxdomain.Elapsed" units="ms">
1375 <summary>Elapsed time of DNS probes that return PROBE_NXDOMAIN.</summary>
1376 </histogram>
1377
1378 <histogram name="DnsProbe.Probe.ResultUnknown.Elapsed" units="ms">
1379 <summary>Elapsed time of DNS probes that return PROBE_UNKNOWN.</summary>
1380 </histogram>
1381
497 <histogram name="DomainBoundCerts.DBLoadedCount"> 1382 <histogram name="DomainBoundCerts.DBLoadedCount">
498 <summary>Number of certs loaded from domain bound cert database.</summary> 1383 <summary>Number of certs loaded from domain bound cert database.</summary>
499 </histogram> 1384 </histogram>
500 1385
501 <histogram name="DomainBoundCerts.DBLoadTime" units="ms"> 1386 <histogram name="DomainBoundCerts.DBLoadTime" units="ms">
502 <summary>Time spent loading domain bound cert database.</summary> 1387 <summary>Time spent loading domain bound cert database.</summary>
503 </histogram> 1388 </histogram>
504 1389
505 <histogram name="DomainBoundCerts.DBSizeInKB" units="KB"> 1390 <histogram name="DomainBoundCerts.DBSizeInKB" units="KB">
506 <summary> 1391 <summary>
(...skipping 7099 matching lines...) Expand 10 before | Expand all | Expand 10 after
7606 <int value="3" label="TrimMemoryComplete"/> 8491 <int value="3" label="TrimMemoryComplete"/>
7607 </enum> 8492 </enum>
7608 8493
7609 <enum name="AndroidMemoryNotificationForeground" type="int"> 8494 <enum name="AndroidMemoryNotificationForeground" type="int">
7610 <int value="0" label="TrimMemoryRunningModerate"/> 8495 <int value="0" label="TrimMemoryRunningModerate"/>
7611 <int value="1" label="TrimMemoryRunningLow"/> 8496 <int value="1" label="TrimMemoryRunningLow"/>
7612 <int value="2" label="TrimMemoryRunningCritical"/> 8497 <int value="2" label="TrimMemoryRunningCritical"/>
7613 <int value="3" label="LowMemory"/> 8498 <int value="3" label="LowMemory"/>
7614 </enum> 8499 </enum>
7615 8500
8501 <enum name="AsyncDNSConfigParsePosix" type="int">
8502 <int value="0" label="OK"/>
8503 <int value="1" label="RES_INIT_FAILED"/>
8504 <int value="2" label="RES_INIT_UNSET"/>
8505 <int value="3" label="BAD_ADDRESS"/>
8506 <int value="4" label="BAD_EXT_STRUCT"/>
8507 <int value="5" label="NULL_ADDRESS"/>
8508 <int value="6" label="NO_NAMESERVERS"/>
8509 <int value="7" label="MISSING_OPTIONS"/>
8510 <int value="8" label="UNHANDLED_OPTIONS"/>
8511 </enum>
8512
8513 <enum name="AsyncDNSConfigParseWin" type="int">
8514 <int value="0" label="OK"/>
8515 <int value="1" label="READ_IPHELPER"/>
8516 <int value="2" label="READ_POLICY_SEARCHLIST"/>
8517 <int value="3" label="READ_TCPIP_SEARCHLIST"/>
8518 <int value="4" label="READ_DOMAIN"/>
8519 <int value="5" label="READ_POLICY_DEVOLUTION"/>
8520 <int value="6" label="READ_DNSCACHE_DEVOLUTION"/>
8521 <int value="7" label="READ_TCPIP_DEVOLUTION"/>
8522 <int value="8" label="READ_APPEND_MULTILABEL"/>
8523 <int value="9" label="READ_PRIMARY_SUFFIX"/>
8524 <int value="10" label="BAD_ADDRESS"/>
8525 <int value="11" label="NO_NAMESERVERS"/>
8526 </enum>
8527
8528 <enum name="AsyncDNSHostsParseWin" type="int">
8529 <int value="0" label="OK"/>
8530 <int value="1" label="UNREADABLE_HOSTS_FILE"/>
8531 <int value="2" label="COMPUTER_NAME_FAILED"/>
8532 <int value="3" label="IPHELPER_FAILED"/>
8533 <int value="4" label="BAD_ADDRESS"/>
8534 </enum>
8535
8536 <enum name="AsyncDNSParseResult" type="int">
8537 <summary>Results of DnsResponse::ParseToAddressList.</summary>
8538 <int value="0" label="SUCCESS"/>
8539 <int value="1" label="MALFORMED_RESPONSE"/>
8540 <int value="2" label="MALFORMED_CNAME"/>
8541 <int value="3" label="NAME_MISMATCH"/>
8542 <int value="4" label="SIZE_MISMATCH"/>
8543 <int value="5" label="CNAME_AFTER_ADDRESS"/>
8544 <int value="6" label="ADDRESS_TTL_MISMATCH"/>
8545 <int value="7" label="NO_ADDRESSES"/>
8546 </enum>
8547
8548 <enum name="AsyncDNSResolveStatus" type="int">
8549 <int value="0" label="DNS_SUCCESS">Succeeded with async DNS.</int>
8550 <int value="1" label="PROC_SUCCESS">
8551 Succeeded with getaddrinfo after async DNS failed.
8552 </int>
8553 <int value="2" label="FAIL">Both async DNS and getaddrinfo failed.</int>
8554 <int value="3" label="SUSPECT_NETBIOS">
8555 Same as PROC_SUCCESS except the hostname fits NetBIOS name criteria.
8556 </int>
8557 </enum>
8558
7616 <enum name="AudioRendererEvents" type="int"> 8559 <enum name="AudioRendererEvents" type="int">
7617 <int value="0" label="Initialized"/> 8560 <int value="0" label="Initialized"/>
7618 <int value="1" label="Runtime error"/> 8561 <int value="1" label="Runtime error"/>
7619 </enum> 8562 </enum>
7620 8563
7621 <enum name="AutocheckoutBubble" type="int"> 8564 <enum name="AutocheckoutBubble" type="int">
7622 <int value="0" label="Created"/> 8565 <int value="0" label="Created"/>
7623 <int value="1" label="Accepted"/> 8566 <int value="1" label="Accepted"/>
7624 <int value="2" label="Dismissed"/> 8567 <int value="2" label="Dismissed"/>
7625 <int value="3" label="Ignored"/> 8568 <int value="3" label="Ignored"/>
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after
8072 <int value="1" label="AppLauncher"/> 9015 <int value="1" label="AppLauncher"/>
8073 <int value="2" label="Gmail"/> 9016 <int value="2" label="Gmail"/>
8074 <int value="3" label="Search"/> 9017 <int value="3" label="Search"/>
8075 <int value="4" label="Youtube"/> 9018 <int value="4" label="Youtube"/>
8076 <int value="5" label="Doc"/> 9019 <int value="5" label="Doc"/>
8077 <int value="6" label="Sheets"/> 9020 <int value="6" label="Sheets"/>
8078 <int value="7" label="Slides"/> 9021 <int value="7" label="Slides"/>
8079 <int value="8" label="PlayMusic"/> 9022 <int value="8" label="PlayMusic"/>
8080 </enum> 9023 </enum>
8081 9024
9025 <enum name="DnsProbe.Job.Result" type="int">
9026 <int value="0" label="SERVERS_UNKNOWN"/>
9027 <int value="1" label="SERVERS_CORRECT"/>
9028 <int value="2" label="SERVERS_INCORRECT"/>
9029 <int value="3" label="SERVERS_FAILING"/>
9030 <int value="4" label="SERVERS_UNREACHABLE"/>
9031 </enum>
9032
9033 <enum name="DnsProbe.Probe.Result" type="int">
9034 <int value="0" label="UNKNOWN"/>
9035 <int value="1" label="NO_INTERNET"/>
9036 <int value="2" label="BAD_CONFIG"/>
9037 <int value="3" label="NXDOMAIN"/>
9038 </enum>
9039
9040 <enum name="DnsProbe.Probe.SystemIsLocalhost" type="int">
9041 <int value="0" label="Not just 127.0.0.1">
9042 127.0.0.1 was not the only nameserver in the system DNS config.
9043 </int>
9044 <int value="1" label="Just 127.0.0.1">
9045 127.0.0.1 was the only nameserver in the system DNS config.
9046 </int>
9047 </enum>
9048
8082 <enum name="DomainBoundCerts.GetCertResult" type="int"> 9049 <enum name="DomainBoundCerts.GetCertResult" type="int">
8083 <int value="0" label="SYNC_SUCCESS"/> 9050 <int value="0" label="SYNC_SUCCESS"/>
8084 <int value="1" label="ASYNC_SUCCESS"/> 9051 <int value="1" label="ASYNC_SUCCESS"/>
8085 <int value="2" label="ASYNC_CANCELLED"/> 9052 <int value="2" label="ASYNC_CANCELLED"/>
8086 <int value="3" label="ASYNC_FAILURE_KEYGEN"/> 9053 <int value="3" label="ASYNC_FAILURE_KEYGEN"/>
8087 <int value="4" label="ASYNC_FAILURE_CREATE_CERT"/> 9054 <int value="4" label="ASYNC_FAILURE_CREATE_CERT"/>
8088 <int value="5" label="ASYNC_FAILURE_EXPORT_KEY"/> 9055 <int value="5" label="ASYNC_FAILURE_EXPORT_KEY"/>
8089 <int value="6" label="ASYNC_FAILURE_UNKNOWN"/> 9056 <int value="6" label="ASYNC_FAILURE_UNKNOWN"/>
8090 <int value="7" label="INVALID_ARGUMENT"/> 9057 <int value="7" label="INVALID_ARGUMENT"/>
8091 <int value="8" label="UNSUPPORTED_TYPE"/> 9058 <int value="8" label="UNSUPPORTED_TYPE"/>
(...skipping 2633 matching lines...) Expand 10 before | Expand all | Expand 10 after
10725 <int value="15" label="DOMAIN_GMAIL_COM"/> 11692 <int value="15" label="DOMAIN_GMAIL_COM"/>
10726 <int value="16" label="DOMAIN_GOOGLEMAIL_COM"/> 11693 <int value="16" label="DOMAIN_GOOGLEMAIL_COM"/>
10727 <int value="17" label="DOMAIN_GOOGLEGROUPS_COM"/> 11694 <int value="17" label="DOMAIN_GOOGLEGROUPS_COM"/>
10728 <int value="18" label="DOMAIN_TORPROJECT_ORG"/> 11695 <int value="18" label="DOMAIN_TORPROJECT_ORG"/>
10729 <int value="19" label="DOMAIN_TWITTER_COM"/> 11696 <int value="19" label="DOMAIN_TWITTER_COM"/>
10730 <int value="20" label="DOMAIN_TWIMG_COM"/> 11697 <int value="20" label="DOMAIN_TWIMG_COM"/>
10731 <int value="21" label="DOMAIN_AKAMAIHD_NET"/> 11698 <int value="21" label="DOMAIN_AKAMAIHD_NET"/>
10732 <int value="22" label="DOMAIN_NUM_EVENTS"/> 11699 <int value="22" label="DOMAIN_NUM_EVENTS"/>
10733 </enum> 11700 </enum>
10734 11701
11702 <enum name="ResolutionCategory" type="int">
11703 <int value="0" label="RESOLVE_SUCCESS"/>
11704 <int value="1" label="RESOLVE_FAIL"/>
11705 <int value="2" label="RESOLVE_SPECULATIVE_SUCCESS"/>
11706 <int value="3" label="RESOLVE_SPECULATIVE_FAIL"/>
11707 </enum>
11708
11709 <enum name="ResolutionUnspecWasteCategory" type="int">
11710 <int value="0" label="AF_WASTE_IPV4_ONLY">
11711 Running in a IPv4-only configuration. No waste.
11712 </int>
11713 <int value="1" label="AF_WASTE_CACHE_IPV4">
11714 Cache contained an UNSPEC result for this IPv4 lookup. Waste.
11715 </int>
11716 <int value="2" label="AF_WASTE_CACHE_UNSPEC">
11717 Cache contained an IPv4 result for this UNSPEC lookup. Waste.
11718 </int>
11719 <int value="3" label="AF_WASTE_JOB_IPV4">
11720 Job pool contained an UNSPEC job for this IPv4 lookup. Waste.
11721 </int>
11722 <int value="4" label="AF_WASTE_JOB_UNSPEC">
11723 Job pool contained an IPv4 job for this UNSPEC lookup. Waste.
11724 </int>
11725 <int value="5" label="AF_WASTE_NONE_IPV4">
11726 A new job was needed for this IPv4 lookup. No waste.
11727 </int>
11728 <int value="6" label="AF_WASTE_NONE_UNSPEC">
11729 A new job was needed for this UNSPEC lookup. No waste.
11730 </int>
11731 </enum>
11732
10735 <enum name="SB2BloomFailure" type="int"> 11733 <enum name="SB2BloomFailure" type="int">
10736 <int value="0" label="READ_OPEN"/> 11734 <int value="0" label="READ_OPEN"/>
10737 <int value="1" label="READ_VERSION"/> 11735 <int value="1" label="READ_VERSION"/>
10738 <int value="2" label="READ_NUM_KEYS"/> 11736 <int value="2" label="READ_NUM_KEYS"/>
10739 <int value="3" label="READ_KEY"/> 11737 <int value="3" label="READ_KEY"/>
10740 <int value="4" label="READ_DATA_MINSIZE"/> 11738 <int value="4" label="READ_DATA_MINSIZE"/>
10741 <int value="5" label="READ_DATA_MAXSIZE"/> 11739 <int value="5" label="READ_DATA_MAXSIZE"/>
10742 <int value="6" label="READ_DATA_SHORT"/> 11740 <int value="6" label="READ_DATA_SHORT"/>
10743 <int value="7" label="READ_DATA"/> 11741 <int value="7" label="READ_DATA"/>
10744 </enum> 11742 </enum>
(...skipping 975 matching lines...) Expand 10 before | Expand all | Expand 10 after
11720 <affected-histogram name="Renderer2.StartToFinishDoc"/> 12718 <affected-histogram name="Renderer2.StartToFinishDoc"/>
11721 <affected-histogram name="Renderer2.StartToFirstLayout"/> 12719 <affected-histogram name="Renderer2.StartToFirstLayout"/>
11722 <affected-histogram name="Renderer4.RequestToFinish"> 12720 <affected-histogram name="Renderer4.RequestToFinish">
11723 <with-group name="parallel_4_prefetch"/> 12721 <with-group name="parallel_4_prefetch"/>
11724 </affected-histogram> 12722 </affected-histogram>
11725 <affected-histogram name="Renderer4.StartToFinish"> 12723 <affected-histogram name="Renderer4.StartToFinish">
11726 <with-group name="parallel_4_prefetch"/> 12724 <with-group name="parallel_4_prefetch"/>
11727 </affected-histogram> 12725 </affected-histogram>
11728 </fieldtrial> 12726 </fieldtrial>
11729 12727
12728 <fieldtrial name="DnsParallelism">
12729 <group name="parallel_10"
12730 label="with only 10 concurrent resolutions done in parallel"/>
12731 <group name="parallel_14"
12732 label="with only 14 concurrent resolutions done in parallel"/>
12733 <group name="parallel_20"
12734 label="with only 20 concurrent resolutions done in parallel"/>
12735 <group name="parallel_6"
12736 label="with only 6 concurrent resolutions done in parallel"/>
12737 <group name="parallel_7"
12738 label="with only 7 concurrent resolutions done in parallel"/>
12739 <group name="parallel_8"
12740 label="with only 8 concurrent resolutions done in parallel"/>
12741 <group name="parallel_9"
12742 label="with only 9 concurrent resolutions done in parallel"/>
12743 <group name="parallel_default"
12744 label="with the default number of concurrent resolutions done in
12745 parallel"/>
12746 <affected-histogram name="DNS.ResolveCategory"/>
12747 <affected-histogram name="DNS.ResolveSuccess"/>
12748 </fieldtrial>
12749
11730 <fieldtrial name="DomainGoogle" separator=""> 12750 <fieldtrial name="DomainGoogle" separator="">
11731 <group name="Google" label="only Google cookies are recorded."/> 12751 <group name="Google" label="only Google cookies are recorded."/>
11732 <group name="Other" label="only NON-Google cookies are recorded."/> 12752 <group name="Other" label="only NON-Google cookies are recorded."/>
11733 <affected-histogram name="Cookie.ReinstatedCookies"/> 12753 <affected-histogram name="Cookie.ReinstatedCookies"/>
11734 </fieldtrial> 12754 </fieldtrial>
11735 12755
11736 <fieldtrial name="FileBrowserLoad" separator="."> 12756 <fieldtrial name="FileBrowserLoad" separator=".">
11737 <group name="Construct" 12757 <group name="Construct"
11738 label="Time spent constructing the main Javascript object."/> 12758 label="Time spent constructing the main Javascript object."/>
11739 <group name="DOM" label="Time to initialize DOM."/> 12759 <group name="DOM" label="Time to initialize DOM."/>
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
11773 <affected-histogram name="NetConnectivity.Pipeline.Depth"/> 12793 <affected-histogram name="NetConnectivity.Pipeline.Depth"/>
11774 <affected-histogram name="NetConnectivity.Pipeline.Success"/> 12794 <affected-histogram name="NetConnectivity.Pipeline.Success"/>
11775 </fieldtrial> 12795 </fieldtrial>
11776 12796
11777 <fieldtrial name="Instant"> 12797 <fieldtrial name="Instant">
11778 <group name="Extended" label="Suggestions + Results"/> 12798 <group name="Extended" label="Suggestions + Results"/>
11779 <group name="Instant" label="Results"/> 12799 <group name="Instant" label="Results"/>
11780 <affected-histogram name="Instant.SessionsStorageNamespace"/> 12800 <affected-histogram name="Instant.SessionsStorageNamespace"/>
11781 </fieldtrial> 12801 </fieldtrial>
11782 12802
12803 <fieldtrial name="IPv6_Probe">
12804 <group name="IPv6_probe_skipped"
12805 label="with IPv6 not probed, and default OS settings used"/>
12806 <group name="IPv6_probe_done"
12807 label="with IPv6 probed for and possibly disabled"/>
12808 <affected-histogram name="DNS.PrefetchResolution"/>
12809 </fieldtrial>
12810
11783 <fieldtrial name="LateBindingExperiment"> 12811 <fieldtrial name="LateBindingExperiment">
11784 <group name="disable_late_binding" label="socket late binding is disabled"/> 12812 <group name="disable_late_binding" label="socket late binding is disabled"/>
11785 <group name="enable_late_binding" label="socket late binding is enabled"/> 12813 <group name="enable_late_binding" label="socket late binding is enabled"/>
11786 <affected-histogram name="Net.SocketIdleTimeBeforeNextUse_ReusedSocket"/> 12814 <affected-histogram name="Net.SocketIdleTimeBeforeNextUse_ReusedSocket"/>
11787 <affected-histogram name="Net.SocketIdleTimeBeforeNextUse_UnusedSocket"/> 12815 <affected-histogram name="Net.SocketIdleTimeBeforeNextUse_UnusedSocket"/>
11788 <affected-histogram name="Net.SocketIdleTimeOnIOError2_ReusedSocket"/> 12816 <affected-histogram name="Net.SocketIdleTimeOnIOError2_ReusedSocket"/>
11789 <affected-histogram name="Net.SocketIdleTimeOnIOError2_UnusedSocket"/> 12817 <affected-histogram name="Net.SocketIdleTimeOnIOError2_UnusedSocket"/>
11790 <affected-histogram name="Net.TCPSocketType"/> 12818 <affected-histogram name="Net.TCPSocketType"/>
11791 <affected-histogram name="Net.Transaction_Connected"/> 12819 <affected-histogram name="Net.Transaction_Connected"/>
11792 <affected-histogram name="Net.Transaction_Connected_Under_10"/> 12820 <affected-histogram name="Net.Transaction_Connected_Under_10"/>
(...skipping 1056 matching lines...) Expand 10 before | Expand all | Expand 10 after
12849 <fieldtrial name="SSLResumption"> 13877 <fieldtrial name="SSLResumption">
12850 <group name="Resume_Handshake" label="Session Resumption"/> 13878 <group name="Resume_Handshake" label="Session Resumption"/>
12851 <group name="Full_Handshake" label="Full"/> 13879 <group name="Full_Handshake" label="Full"/>
12852 <affected-histogram name="Net.SSL_Connection_Latency"/> 13880 <affected-histogram name="Net.SSL_Connection_Latency"/>
12853 <affected-histogram name="Net.SSL_Connection_Latency_Google"/> 13881 <affected-histogram name="Net.SSL_Connection_Latency_Google"/>
12854 </fieldtrial> 13882 </fieldtrial>
12855 13883
12856 </fieldtrials> 13884 </fieldtrials>
12857 13885
12858 </histogram-configuration> 13886 </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