| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2012 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. | |
| 4 // | |
| 5 // Protocol buffer for Chrome UMA (User Metrics Analysis). | |
| 6 | |
| 7 syntax = "proto2"; | |
| 8 | |
| 9 option optimize_for = LITE_RUNTIME; | |
| 10 | |
| 11 package metrics; | |
| 12 | |
| 13 import "histogram_event.proto"; | |
| 14 import "omnibox_event.proto"; | |
| 15 import "profiler_event.proto"; | |
| 16 import "system_profile.proto"; | |
| 17 import "user_action_event.proto"; | |
| 18 import "perf_data.proto"; | |
| 19 | |
| 20 // Next tag: 11 | |
| 21 message ChromeUserMetricsExtension { | |
| 22 // The product (i.e. end user application) for a given UMA log. | |
| 23 enum Product { | |
| 24 // Google Chrome product family. | |
| 25 CHROME = 0; | |
| 26 } | |
| 27 // The product corresponding to this log. Note: The default value is Chrome, | |
| 28 // so Chrome products will not transmit this field. | |
| 29 optional Product product = 10 [default = CHROME]; | |
| 30 | |
| 31 // The id of the client install that generated these events. | |
| 32 // | |
| 33 // For Chrome clients, this id is unique to a top-level (one level above the | |
| 34 // "Default" directory) Chrome user data directory [1], and so is shared among | |
| 35 // all Chrome user profiles contained in this user data directory. | |
| 36 // An id of 0 is reserved for test data (monitoring and internal testing) and | |
| 37 // should normally be ignored in analysis of the data. | |
| 38 // [1] http://www.chromium.org/user-experience/user-data-directory | |
| 39 optional fixed64 client_id = 1; | |
| 40 | |
| 41 // The session id for this user. | |
| 42 // Values such as tab ids are only meaningful within a particular session. | |
| 43 // The client keeps track of the session id and sends it with each event. | |
| 44 // The session id is simply an integer that is incremented each time the user | |
| 45 // relaunches Chrome. | |
| 46 optional int32 session_id = 2; | |
| 47 | |
| 48 // Information about the user's browser and system configuration. | |
| 49 optional SystemProfileProto system_profile = 3; | |
| 50 | |
| 51 // This message will log one or more of the following event types: | |
| 52 repeated UserActionEventProto user_action_event = 4; | |
| 53 repeated OmniboxEventProto omnibox_event = 5; | |
| 54 repeated HistogramEventProto histogram_event = 6; | |
| 55 repeated ProfilerEventProto profiler_event = 7; | |
| 56 | |
| 57 repeated PerfDataProto perf_data = 8; | |
| 58 } | |
| OLD | NEW |