blob: ae014ee8bc51b4a47d0801f40d2ce48bcdada6b2 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto2";
option optimize_for = LITE_RUNTIME;
option java_package = "org.chromium.components.metrics";
option java_outer_classname = "ChromeUserMetricsExtensionProtos";
package metrics;
import "cast_logs.proto";
import "cast_assistant_logs.proto";
import "chrome_os_app_list_launch_event.proto";
import "histogram_event.proto";
import "memory_leak_report.proto";
import "omnibox_event.proto";
import "perf_data.proto";
import "printer_event.proto";
import "reporting_info.proto";
import "sampled_profile.proto";
import "structured_data.proto";
import "system_profile.proto";
import "trace_log.proto";
import "translate_event.proto";
import "user_action_event.proto";
import "user_demographics.proto";
// Next tag: 27
message ChromeUserMetricsExtension {
// The product (i.e. end user application) for a given UMA log.
enum Product {
// Google Chrome product family.
CHROME = 0;
// UMA metrics from Android Webview.
ANDROID_WEBVIEW = 20;
// Cast Assistant
CAST_ASSISTANT = 25;
// Cast receivers, e.g. Chromecast
CAST = 35;
// UMA metrics from Android WebLayer.
ANDROID_WEBLAYER = 56;
}
// The product corresponding to this log. The field type is int32 instead of
// Product so that downstream users of the Chromium metrics component can
// introduce products without needing to make changes to the Chromium code
// (though they still need to add the new product to the server-side enum).
// Note: The default value is Chrome, so Chrome products will not transmit
// this field.
optional int32 product = 10 [default = 0];
// The id of the client install that generated these events.
//
// For Chrome clients, this id is unique to a top-level (one level above the
// "Default" directory) Chrome user data directory [1], and so is shared among
// all Chrome user profiles contained in this user data directory.
// An id of 0 is reserved for test data (monitoring and internal testing) and
// should normally be ignored in analysis of the data.
// [1] http://www.chromium.org/user-experience/user-data-directory
optional fixed64 client_id = 1;
// The session id for this user.
// Values such as tab ids are only meaningful within a particular session.
// The client keeps track of the session id and sends it with each event.
// The session id is simply an integer that is incremented each time the user
// relaunches Chrome.
optional int32 session_id = 2;
// The id associated with a user entity that generated these events. These
// user IDs are only associated with users on device. Their generation is not
// based on any other ID.
//
// This field is not populated on non-Chrome OS platforms.
//
// For Chrome OS, this id refers to a device user entity. This field will be
// captured when a log is first opened. If there is no user logged in at the
// time the log is opened, then this field will be unset. All ephemeral (i.e.
// guest, kiosk) users will have this field unset.
optional fixed64 user_id = 24;
// Next tag: 4
message RealLocalTime {
// The source of the timestamp.
enum TimeSource {
UNSPECIFIED = 0;
// The time on the local machine.
CLIENT_CLOCK = 1;
// The time derived from server information provided by the
// NetworkTimeTracker a.k.a. "sane time" system. See
// https://www.chromium.org/developers/design-documents/sane-time
NETWORK_TIME_CLOCK = 2;
}
optional TimeSource time_source = 1;
// |time_sec| is in seconds since epoch.
optional int64 time_sec = 2;
// |time_zone_offset_from_gmt_sec| is in seconds.
optional int32 time_zone_offset_from_gmt_sec = 3;
}
// These times are set for "ongoing" UMA logs. For two other types
// of UMA logs, these values are omitted:
// - logs recovered from a previous run of Chrome ("persisted UMA"), such as
// one that didn't shut down cleanly.
// - the initial stability log.
optional RealLocalTime time_log_created = 25;
optional RealLocalTime time_log_closed = 26;
// Information about the user's browser and system configuration.
optional SystemProfileProto system_profile = 3;
// The user's demographic information. This data is made available to Chrome
// via syncable priority pref, so is only available if the user is signed-in
// and syncing.
optional UserDemographicsProto user_demographics = 21;
// This message will log one or more of the following event types:
repeated UserActionEventProto user_action_event = 4;
repeated OmniboxEventProto omnibox_event = 5;
repeated HistogramEventProto histogram_event = 6;
repeated TranslateEventProto translate_event = 15;
repeated PrinterEventProto printer_event = 16;
repeated ChromeOSAppListLaunchEventProto chrome_os_app_list_launch_event = 20;
repeated StructuredEventProto deprecated_structured_event = 22
[deprecated = true];
optional StructuredDataProto structured_data = 23;
// Deprecated: use |sampled_profile| instead.
repeated PerfDataProto perf_data = 8 [deprecated = true];
// A list of all collected sample-based profiles since the last UMA upload.
repeated SampledProfile sampled_profile = 11;
// Additional data related with Cast-enabled devices.
optional CastLogsProto cast_logs = 12;
// Memory leak reports generated since the last UMA upload.
repeated MemoryLeakReportProto memory_leak_report = 13;
// Additional data related with CastAssistant devices.
// Appears in gfstmp/cast_assistant logs only.
optional CastAssistantLogsProto cast_assistant_logs = 14;
// The ReportingInfo message sent in the X-Chrome-UMA-ReportingInfo header.
// Copied in by the receiving server.
optional ReportingInfo reporting_info = 17;
// The Chrome traces obtained during the current session. The start time,
// duration and details depend on the experiment triggers in the current
// session. This field is uploaded as independent logs, which contain only
// session id and core system profile fields, apart from this field.
repeated TraceLog trace_log = 19;
}