Chromium Code Reviews| Index: components/metrics/proto/sampled_profile.proto |
| diff --git a/components/metrics/proto/sampled_profile.proto b/components/metrics/proto/sampled_profile.proto |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..5cb76b5bc7ec968853bf8068ef3a0d42772d7a60 |
| --- /dev/null |
| +++ b/components/metrics/proto/sampled_profile.proto |
| @@ -0,0 +1,44 @@ |
| +// Copyright (c) 2014 The Chromium Authors. All rights reserved. |
|
Ilya Sherman
2014/05/15 18:56:48
ultra nit: No need for "(c)".
Simon Que
2014/05/15 18:59:57
Done.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| +// |
| +// A profile that was collected by sampling. |
|
Ilya Sherman
2014/05/15 18:56:48
nit: This is redundant with lines 15-16. I'd reco
Simon Que
2014/05/15 18:59:57
Done.
|
| + |
| +syntax = "proto2"; |
| + |
| +option optimize_for = LITE_RUNTIME; |
| + |
| +package metrics; |
| + |
| +import "perf_data.proto"; |
| + |
| +// Protocol buffer for collected sample-based profiling data. |
| +// Contains the parameters and data from a single profile collection event. |
| + |
| +// Next tag: 5 |
| +message SampledProfile { |
| + // Indicates the event that triggered this collection. |
| + enum TriggerEvent { |
| + UNKNOWN_TRIGGER_EVENT = 0; |
| + |
| + // The profile was triggered by periodic sampling. Periodically sampled |
| + // profiles are collected once per uniformly sized period interval. Within |
| + // each interval, the sampled data is collected at a random time. For |
| + // example, if the interval is 60 s, then data would be collected at a |
| + // random point in each of the intervals [0, 60 s), [60 s, 120 s), etc. |
| + PERIODIC_COLLECTION = 1; |
| + } |
| + optional TriggerEvent trigger_event = 1; |
| + |
| + // Fields 2-3: Time durations are given in ticks, and represent system uptime |
| + // rather than wall time. |
| + |
| + // Time after system boot when the collection took place, in milliseconds. |
| + optional int64 ms_after_boot = 2; |
| + |
| + // Time after last login when the collection took place, in milliseconds. |
| + optional int64 ms_after_login = 3; |
| + |
| + // The actual perf data that was collected. |
| + optional PerfDataProto perf_data = 4; |
| +} |