15 lines
231 B
Protocol Buffer
15 lines
231 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package benchmark;
|
|
|
|
message Entry {
|
|
string source = 1;
|
|
string tags_sdkver = 2;
|
|
string tags_platform = 3;
|
|
double value = 4;
|
|
uint64 timestamp = 5;
|
|
}
|
|
|
|
message BenchmarkData {
|
|
repeated Entry data = 1;
|
|
}
|