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

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

Issue 19733003: Implement cloud policy invalidations using the invalidation service framework. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 5 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
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 2386 matching lines...) Expand 10 before | Expand all | Expand 10 after
2397 </summary> 2397 </summary>
2398 </histogram> 2398 </histogram>
2399 2399
2400 <histogram name="Enterprise.Policy" enum="EnterprisePolicyType"> 2400 <histogram name="Enterprise.Policy" enum="EnterprisePolicyType">
2401 <summary> 2401 <summary>
2402 Events related to fetching, saving and loading user policies, and also 2402 Events related to fetching, saving and loading user policies, and also
2403 device policies on ChromeOS. 2403 device policies on ChromeOS.
2404 </summary> 2404 </summary>
2405 </histogram> 2405 </histogram>
2406 2406
2407 <histogram name="Enterprise.PolicyInvalidations"
2408 enum="EnterprisePolicyInvalidations">
2409 <summary>Events for receiving different types of invalidations.</summary>
2410 </histogram>
2411
2407 <histogram name="Enterprise.PolicyLoadStatus" enum="EnterprisePolicyLoadStatus"> 2412 <histogram name="Enterprise.PolicyLoadStatus" enum="EnterprisePolicyLoadStatus">
2408 <summary> 2413 <summary>
2409 Load status from the policy loaders which pull policy settings from the 2414 Load status from the policy loaders which pull policy settings from the
2410 underlying platform, such as Windows Group Policy. 2415 underlying platform, such as Windows Group Policy.
2411 </summary> 2416 </summary>
2412 </histogram> 2417 </histogram>
2413 2418
2419 <histogram name="Enterprise.PolicyRefresh" enum="EnterprisePolicyRefresh">
2420 <summary>
2421 Events measuring effectiveness of refreshing policy when invalidations are
2422 received from a service.
2423 </summary>
2424 </histogram>
2425
2414 <histogram name="Event.CoalescedCount.Mouse"> 2426 <histogram name="Event.CoalescedCount.Mouse">
2415 <summary>Number of Mouse events coalesced.</summary> 2427 <summary>Number of Mouse events coalesced.</summary>
2416 </histogram> 2428 </histogram>
2417 2429
2418 <histogram name="Event.CoalescedCount.Touch"> 2430 <histogram name="Event.CoalescedCount.Touch">
2419 <summary>Number of Touch events coalesced.</summary> 2431 <summary>Number of Touch events coalesced.</summary>
2420 </histogram> 2432 </histogram>
2421 2433
2422 <histogram name="Event.CoalescedLatency.Mouse" units="milliseconds"> 2434 <histogram name="Event.CoalescedLatency.Mouse" units="milliseconds">
2423 <summary> 2435 <summary>
(...skipping 13483 matching lines...) Expand 10 before | Expand all | Expand 10 after
15907 <int value="192" label="Limit device uptime by automatically rebooting"/> 15919 <int value="192" label="Limit device uptime by automatically rebooting"/>
15908 <int value="193" label="Automatically reboot after update"/> 15920 <int value="193" label="Automatically reboot after update"/>
15909 <int value="194" label="Public session for auto-login"/> 15921 <int value="194" label="Public session for auto-login"/>
15910 <int value="195" label="Public session auto-login timer"/> 15922 <int value="195" label="Public session auto-login timer"/>
15911 <int value="196" 15923 <int value="196"
15912 label="Set the restriction on the fetching of the Variations seed"/> 15924 label="Set the restriction on the fetching of the Variations seed"/>
15913 <int value="197" label="Idle warning delay when running on AC power"/> 15925 <int value="197" label="Idle warning delay when running on AC power"/>
15914 <int value="198" label="Idle warning delay when running on battery power"/> 15926 <int value="198" label="Idle warning delay when running on battery power"/>
15915 </enum> 15927 </enum>
15916 15928
15929 <enum name="EnterprisePolicyInvalidations" type="int">
15930 <summary>
15931 Status codes representing types of policy invalidations received.
15932 </summary>
15933 <int value="0" label="PAYLOAD">The invalidation contains a payload.</int>
15934 <int value="1" label="NO_PAYLOAD">The invalidation contains no payload.</int>
15935 </enum>
15936
15917 <enum name="EnterprisePolicyLoadStatus" type="int"> 15937 <enum name="EnterprisePolicyLoadStatus" type="int">
15918 <summary> 15938 <summary>
15919 Status codes produced by the policy loaders that pull policy settings from 15939 Status codes produced by the policy loaders that pull policy settings from
15920 the platform-specific management infrastructure, such as Windows Group 15940 the platform-specific management infrastructure, such as Windows Group
15921 Policy. 15941 Policy.
15922 </summary> 15942 </summary>
15923 <int value="0" label="STARTED"> 15943 <int value="0" label="STARTED">
15924 Policy load attempt started. This gets logged for each policy load attempt 15944 Policy load attempt started. This gets logged for each policy load attempt
15925 to get a baseline on the number of requests, and an arbitrary number of the 15945 to get a baseline on the number of requests, and an arbitrary number of the
15926 below status codes may get added in addition. 15946 below status codes may get added in addition.
(...skipping 11 matching lines...) Expand all
15938 <int value="5" label="WOW64_REDIRECTION_DISABLED"> 15958 <int value="5" label="WOW64_REDIRECTION_DISABLED">
15939 Trying with Wow64 redirection disabled. 15959 Trying with Wow64 redirection disabled.
15940 </int> 15960 </int>
15941 <int value="6" label="READ_ERROR"> 15961 <int value="6" label="READ_ERROR">
15942 Data read error, for example file reading errors. 15962 Data read error, for example file reading errors.
15943 </int> 15963 </int>
15944 <int value="7" label="TOO_BIG">Data too large to process.</int> 15964 <int value="7" label="TOO_BIG">Data too large to process.</int>
15945 <int value="8" label="PARSE_ERROR">Parse error.</int> 15965 <int value="8" label="PARSE_ERROR">Parse error.</int>
15946 </enum> 15966 </enum>
15947 15967
15968 <enum name="EnterprisePolicyRefresh" type="int">
15969 <summary>
15970 Status codes representing whether a policy was invalidated when it was
15971 refreshed and whether the refresh resulted in changed policy values.
15972 </summary>
15973 <int value="0" label="CHANGED">
15974 Policy was not invalidated; policy was changed.
15975 </int>
15976 <int value="1" label="UNCHANGED">
15977 Policy was not invalidated; policy was unchanged.
15978 </int>
15979 <int value="2" label="INVALIDATED_CHANGED">
15980 Policy was invalidated; policy was changed.
15981 </int>
15982 <int value="3" label="INVALIDATED_UNCHANGED">
15983 Policy was invalidated; policy was unchanged.
15984 </int>
15985 </enum>
15986
15948 <enum name="EnterprisePolicyType" type="int"> 15987 <enum name="EnterprisePolicyType" type="int">
15949 <summary> 15988 <summary>
15950 Result of Policy operations as defined in 15989 Result of Policy operations as defined in
15951 chrome/browser/policy/enterprise_metrics.h. 15990 chrome/browser/policy/enterprise_metrics.h.
15952 </summary> 15991 </summary>
15953 <int value="0" label="Load Succeeded"> 15992 <int value="0" label="Load Succeeded">
15954 A cached policy was successfully loaded from disk. 15993 A cached policy was successfully loaded from disk.
15955 </int> 15994 </int>
15956 <int value="1" label="Load Failed"> 15995 <int value="1" label="Load Failed">
15957 Reading a cached policy from disk failed. 15996 Reading a cached policy from disk failed.
(...skipping 7458 matching lines...) Expand 10 before | Expand all | Expand 10 after
23416 <group name="Disabled" label="Neither extra webstore link is visible"/> 23455 <group name="Disabled" label="Neither extra webstore link is visible"/>
23417 <group name="FooterLink" label="Link in bottom right of footer"/> 23456 <group name="FooterLink" label="Link in bottom right of footer"/>
23418 <group name="PlusIcon" label="Plus icon in apps page"/> 23457 <group name="PlusIcon" label="Plus icon in apps page"/>
23419 <affected-histogram name="Extensions.AppLaunch"/> 23458 <affected-histogram name="Extensions.AppLaunch"/>
23420 <affected-histogram name="NewTabPage.DefaultPageType"/> 23459 <affected-histogram name="NewTabPage.DefaultPageType"/>
23421 </fieldtrial> 23460 </fieldtrial>
23422 23461
23423 </fieldtrials> 23462 </fieldtrials>
23424 23463
23425 </histogram-configuration> 23464 </histogram-configuration>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698