summaryrefslogtreecommitdiff
path: root/perf_tools/report.proto
diff options
context:
space:
mode:
Diffstat (limited to 'perf_tools/report.proto')
-rw-r--r--perf_tools/report.proto21
1 files changed, 21 insertions, 0 deletions
diff --git a/perf_tools/report.proto b/perf_tools/report.proto
new file mode 100644
index 00000000..fb9e839b
--- /dev/null
+++ b/perf_tools/report.proto
@@ -0,0 +1,21 @@
+syntax = "proto2";
+
+package report;
+
+message Keyword {
+ required string value = 1;
+}
+
+message Keywords {
+ repeated Keyword keyword = 1;
+}
+
+message Record {
+ required string timestamp = 1;
+ required string event = 2;
+ required int64 timing = 3;
+}
+
+message Report {
+ repeated Record record = 1;
+}