mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 22:00:47 +01:00

Parses log, calls analyzer and populates output. Currently only outputs two charts. Chart selection to be added in a followup. Bug: None Change-Id: I960cff15a5935a638a5d979a71230ad598083596 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/324680 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Björn Terelius <terelius@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Auto-Submit: Björn Terelius <terelius@webrtc.org> Cr-Commit-Position: refs/heads/main@{#41000}
14 lines
277 B
Protocol Buffer
14 lines
277 B
Protocol Buffer
syntax = "proto3";
|
|
// Contains enums used as part of chart.proto
|
|
option optimize_for = LITE_RUNTIME;
|
|
package webrtc.analytics;
|
|
|
|
message ChartStyle {
|
|
enum Type {
|
|
UNDEFINED = 0;
|
|
LINE_CHART = 1;
|
|
BAR_CHART = 2;
|
|
LINE_STEP_CHART = 3;
|
|
SCATTER_CHART = 4;
|
|
};
|
|
};
|