2016-09-07 11:15:37 -07:00
|
|
|
syntax = "proto3";
|
2018-12-10 18:42:09 +01:00
|
|
|
// Describes a chart generated from WebRTC event log data.
|
2016-09-07 11:15:37 -07:00
|
|
|
option optimize_for = LITE_RUNTIME;
|
|
|
|
|
package webrtc.analytics;
|
|
|
|
|
|
2018-12-10 18:42:09 +01:00
|
|
|
import "chart_enums.proto";
|
2016-09-07 11:15:37 -07:00
|
|
|
|
|
|
|
|
message DataSet {
|
|
|
|
|
repeated float x_values = 1;
|
|
|
|
|
repeated float y_values = 2;
|
|
|
|
|
string label = 3;
|
|
|
|
|
ChartStyle.Type style = 4;
|
|
|
|
|
bool highlight_points = 5;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-24 11:42:53 +02:00
|
|
|
message TickLabel {
|
|
|
|
|
float value = 1;
|
|
|
|
|
string label = 2;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 11:15:37 -07:00
|
|
|
message Chart {
|
|
|
|
|
repeated DataSet data_sets = 1;
|
|
|
|
|
float xaxis_min = 2;
|
|
|
|
|
float xaxis_max = 3;
|
|
|
|
|
string xaxis_label = 4;
|
|
|
|
|
float yaxis_min = 5;
|
|
|
|
|
float yaxis_max = 6;
|
|
|
|
|
string yaxis_label = 7;
|
|
|
|
|
string title = 8;
|
2019-06-11 17:39:38 +02:00
|
|
|
string id = 9;
|
2019-07-24 11:42:53 +02:00
|
|
|
repeated TickLabel yaxis_tick_labels = 10;
|
2016-09-07 11:15:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
message ChartCollection {
|
|
|
|
|
repeated Chart charts = 1;
|
2022-02-25 08:22:38 +00:00
|
|
|
// `calltime_to_utc_ms` is the UTC time (in ms) for the x-axis in the charts.
|
|
|
|
|
// In other words, time t ms in the charts corresponds to
|
|
|
|
|
// t+calltime_to_utc_ms ms in UTC time.
|
|
|
|
|
int64 calltime_to_utc_ms = 2;
|
2017-02-01 06:34:53 -08:00
|
|
|
}
|