1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Protocol buffer for Chrome UMA (User Metrics Analysis).
9 option optimize_for = LITE_RUNTIME;
13 import "cast_logs.proto";
14 import "histogram_event.proto";
15 import "omnibox_event.proto";
16 import "profiler_event.proto";
17 import "system_profile.proto";
18 import "user_action_event.proto";
19 import "perf_data.proto";
20 import "sampled_profile.proto";
23 message ChromeUserMetricsExtension {
24 // The product (i.e. end user application) for a given UMA log.
26 // Google Chrome product family.
29 // The product corresponding to this log. The field type is int32 instead of
30 // Product so that downstream users of the Chromium metrics component can
31 // introduce products without needing to make changes to the Chromium code
32 // (though they still need to add the new product to the server-side enum).
33 // Note: The default value is Chrome, so Chrome products will not transmit
35 optional int32 product = 10 [default = 0];
37 // The id of the client install that generated these events.
39 // For Chrome clients, this id is unique to a top-level (one level above the
40 // "Default" directory) Chrome user data directory [1], and so is shared among
41 // all Chrome user profiles contained in this user data directory.
42 // An id of 0 is reserved for test data (monitoring and internal testing) and
43 // should normally be ignored in analysis of the data.
44 // [1] http://www.chromium.org/user-experience/user-data-directory
45 optional fixed64 client_id = 1;
47 // The session id for this user.
48 // Values such as tab ids are only meaningful within a particular session.
49 // The client keeps track of the session id and sends it with each event.
50 // The session id is simply an integer that is incremented each time the user
52 optional int32 session_id = 2;
54 // Information about the user's browser and system configuration.
55 optional SystemProfileProto system_profile = 3;
57 // This message will log one or more of the following event types:
58 repeated UserActionEventProto user_action_event = 4;
59 repeated OmniboxEventProto omnibox_event = 5;
60 repeated HistogramEventProto histogram_event = 6;
61 repeated ProfilerEventProto profiler_event = 7;
63 // TODO(sque): Deprecate this field and use |sampled_profile| instead.
64 repeated PerfDataProto perf_data = 8;
66 // A list of all collected sample-based profiles since the last UMA upload.
67 repeated SampledProfile sampled_profile = 11;
69 // Additional data related with Cast-enabled devices.
70 optional CastLogsProto cast_logs = 12;