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

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, 4 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 13700 matching lines...) Expand 10 before | Expand all | Expand 10 after
16124 <int value="192" label="Limit device uptime by automatically rebooting"/> 16136 <int value="192" label="Limit device uptime by automatically rebooting"/>
16125 <int value="193" label="Automatically reboot after update"/> 16137 <int value="193" label="Automatically reboot after update"/>
16126 <int value="194" label="Public session for auto-login"/> 16138 <int value="194" label="Public session for auto-login"/>
16127 <int value="195" label="Public session auto-login timer"/> 16139 <int value="195" label="Public session auto-login timer"/>
16128 <int value="196" 16140 <int value="196"
16129 label="Set the restriction on the fetching of the Variations seed"/> 16141 label="Set the restriction on the fetching of the Variations seed"/>
16130 <int value="197" label="Idle warning delay when running on AC power"/> 16142 <int value="197" label="Idle warning delay when running on AC power"/>
16131 <int value="198" label="Idle warning delay when running on battery power"/> 16143 <int value="198" label="Idle warning delay when running on battery power"/>
16132 </enum> 16144 </enum>
16133 16145
16146 <enum name="EnterprisePolicyInvalidations" type="int">
16147 <summary>
16148 Status codes representing types of policy invalidations received.
16149 </summary>
16150 <int value="0" label="PAYLOAD">The invalidation contains a payload.</int>
16151 <int value="1" label="NO_PAYLOAD">The invalidation contains no payload.</int>
16152 </enum>
16153
16134 <enum name="EnterprisePolicyLoadStatus" type="int"> 16154 <enum name="EnterprisePolicyLoadStatus" type="int">
16135 <summary> 16155 <summary>
16136 Status codes produced by the policy loaders that pull policy settings from 16156 Status codes produced by the policy loaders that pull policy settings from
16137 the platform-specific management infrastructure, such as Windows Group 16157 the platform-specific management infrastructure, such as Windows Group
16138 Policy. 16158 Policy.
16139 </summary> 16159 </summary>
16140 <int value="0" label="STARTED"> 16160 <int value="0" label="STARTED">
16141 Policy load attempt started. This gets logged for each policy load attempt 16161 Policy load attempt started. This gets logged for each policy load attempt
16142 to get a baseline on the number of requests, and an arbitrary number of the 16162 to get a baseline on the number of requests, and an arbitrary number of the
16143 below status codes may get added in addition. 16163 below status codes may get added in addition.
(...skipping 11 matching lines...) Expand all
16155 <int value="5" label="WOW64_REDIRECTION_DISABLED"> 16175 <int value="5" label="WOW64_REDIRECTION_DISABLED">
16156 Trying with Wow64 redirection disabled. 16176 Trying with Wow64 redirection disabled.
16157 </int> 16177 </int>
16158 <int value="6" label="READ_ERROR"> 16178 <int value="6" label="READ_ERROR">
16159 Data read error, for example file reading errors. 16179 Data read error, for example file reading errors.
16160 </int> 16180 </int>
16161 <int value="7" label="TOO_BIG">Data too large to process.</int> 16181 <int value="7" label="TOO_BIG">Data too large to process.</int>
16162 <int value="8" label="PARSE_ERROR">Parse error.</int> 16182 <int value="8" label="PARSE_ERROR">Parse error.</int>
16163 </enum> 16183 </enum>
16164 16184
16185 <enum name="EnterprisePolicyRefresh" type="int">
16186 <summary>
16187 Status codes representing whether a policy was invalidated when it was
16188 refreshed and whether the refresh resulted in changed policy values.
16189 </summary>
16190 <int value="0" label="CHANGED">
16191 Policy was not invalidated; policy was changed; invalidations were enabled.
16192 </int>
16193 <int value="1" label="CHANGED_NO_INVALIDATIONS">
16194 Policy was not invalidated; policy was changed; invalidations were disabled.
16195 </int>
16196 <int value="2" label="UNCHANGED">
16197 Policy was not invalidated; policy was unchanged.
16198 </int>
16199 <int value="3" label="INVALIDATED_CHANGED">
16200 Policy was invalidated; policy was changed.
16201 </int>
16202 <int value="4" label="INVALIDATED_UNCHANGED">
16203 Policy was invalidated; policy was unchanged.
16204 </int>
16205 </enum>
16206
16165 <enum name="EnterprisePolicyType" type="int"> 16207 <enum name="EnterprisePolicyType" type="int">
16166 <summary> 16208 <summary>
16167 Result of Policy operations as defined in 16209 Result of Policy operations as defined in
16168 chrome/browser/policy/enterprise_metrics.h. 16210 chrome/browser/policy/enterprise_metrics.h.
16169 </summary> 16211 </summary>
16170 <int value="0" label="Load Succeeded"> 16212 <int value="0" label="Load Succeeded">
16171 A cached policy was successfully loaded from disk. 16213 A cached policy was successfully loaded from disk.
16172 </int> 16214 </int>
16173 <int value="1" label="Load Failed"> 16215 <int value="1" label="Load Failed">
16174 Reading a cached policy from disk failed. 16216 Reading a cached policy from disk failed.
(...skipping 7542 matching lines...) Expand 10 before | Expand all | Expand 10 after
23717 <group name="Disabled" label="Neither extra webstore link is visible"/> 23759 <group name="Disabled" label="Neither extra webstore link is visible"/>
23718 <group name="FooterLink" label="Link in bottom right of footer"/> 23760 <group name="FooterLink" label="Link in bottom right of footer"/>
23719 <group name="PlusIcon" label="Plus icon in apps page"/> 23761 <group name="PlusIcon" label="Plus icon in apps page"/>
23720 <affected-histogram name="Extensions.AppLaunch"/> 23762 <affected-histogram name="Extensions.AppLaunch"/>
23721 <affected-histogram name="NewTabPage.DefaultPageType"/> 23763 <affected-histogram name="NewTabPage.DefaultPageType"/>
23722 </fieldtrial> 23764 </fieldtrial>
23723 23765
23724 </fieldtrials> 23766 </fieldtrials>
23725 23767
23726 </histogram-configuration> 23768 </histogram-configuration>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698