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

Unified Diff: components/metrics/proto/call_stack_profile.proto

Issue 981143006: Metrics provider for statistical stack profiler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: address comments Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: components/metrics/proto/call_stack_profile.proto
diff --git a/components/metrics/proto/call_stack_profile.proto b/components/metrics/proto/call_stack_profile.proto
new file mode 100644
index 0000000000000000000000000000000000000000..26147d89b7d9f1ec6c380c8fae2bdfa59692ddfd
--- /dev/null
+++ b/components/metrics/proto/call_stack_profile.proto
@@ -0,0 +1,55 @@
+// Copyright 2015 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.
+
+// Call stack sample data for a given profiling session.
+
+syntax = "proto2";
+
+option optimize_for = LITE_RUNTIME;
+
+package metrics;
+
+// Next tag: 5
+message CallStackProfile {
+
Ilya Sherman 2015/03/17 04:54:35 nit: Please replace this newline with documentatio
Mike Wittman 2015/03/18 00:54:28 Done.
+ message Sample {
+ // The callstack. Sample.entries[0] represents the call on the top of the
+ // stack.
+ repeated CallStackEntry entry = 1;
Ilya Sherman 2015/03/17 04:54:35 nit: Please leave a blank line after this one.
Mike Wittman 2015/03/18 00:54:27 Done.
+ // Number of times this stack signature occurs.
+ optional int64 count = 2;
+ }
+
+ // The callstack and counts.
+ repeated Sample sample = 1;
Ilya Sherman 2015/03/17 04:54:35 nit: Please leave a blank line here.
Mike Wittman 2015/03/18 00:54:27 Done.
+ // List of module ids found in this sample.
+ repeated ModuleIdentifier module_id = 2;
+
+ // Duration of this profile.
+ optional int32 profile_duration_ms = 3;
Ilya Sherman 2015/03/17 04:54:35 nit: Please leave a blank line here.
Mike Wittman 2015/03/18 00:54:28 Done.
+ // Time between samples.
+ optional int32 sampling_period_ms = 4;
+}
+
+// Describes an entry in the callstack.
+message CallStackEntry {
+ // Instruction pointer subtracted by module base.
+ optional uint64 address = 1;
Ilya Sherman 2015/03/17 04:54:35 nit: Please leave a blank line here.
Mike Wittman 2015/03/18 00:54:28 Done.
+ // Index to the module identifier in |module_ids| of CallStackProfile.
+ optional int32 module_id_index = 2;
+}
Ilya Sherman 2015/03/17 04:54:35 Why are some of the messages declared as inner mes
Mike Wittman 2015/03/18 00:54:28 In the server-side review (cr/87065567) Sample was
Ilya Sherman 2015/03/19 00:10:19 That's fair, but it doesn't look like the reviewer
Ilya Sherman 2015/03/19 02:01:16 Bump.
Mike Wittman 2015/03/19 21:51:18 Sorry, this slipped my mind. Made the messages int
+
+// Uniquely identifies a module.
+message ModuleIdentifier {
+ // A hash that uniquely identifies a particular program version with high
+ // probability. This is parsed from headers of the loaded module.
+ // For binaries generated by GNU tools:
+ // Contents of the .note.gnu.build-id field.
+ // On Windows:
+ // GUID + AGE in the debug image headers of a module.
+ optional bytes build_id = 1;
Ilya Sherman 2015/03/17 04:54:35 nit: Please leave a blank line here.
Ilya Sherman 2015/03/17 04:54:35 "bytes" fields are generally discouraged, same as
Mike Wittman 2015/03/18 00:54:28 Done.
Mike Wittman 2015/03/18 00:54:28 Yes. This was addressed in the server-side review:
+ // MD5Sum Prefix of the module name. This is the same hashing scheme as used
+ // to hash UMA histogram names.
+ optional fixed64 name_md5_prefix = 2;
+}

Powered by Google App Engine
This is Rietveld 408576698