1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
syntax = "proto3";
package api;
message State
{
uint64 duration = 1;
uint64 runed = 2;
uint64 cost_sum = 3;
uint32 avg10 = 4;
repeated string tag_li = 5;
}
message Err
{
string err = 1;
State state = 2;
}
message Site
{
string host = 1;
repeated State ok_li = 2;
repeated Err err_li = 3;
}
message Kind
{
string name = 1;
repeated Site site_li = 2;
}
message Li
{
uint32 sec_since_pre_check = 1;
repeated Kind kind_li = 2;
}