-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathanalytics.proto
More file actions
44 lines (28 loc) · 798 Bytes
/
analytics.proto
File metadata and controls
44 lines (28 loc) · 798 Bytes
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
38
39
40
41
42
43
44
syntax = "proto2";
message Analytics {
required string system_id = 1;
message OnlineContentApps {
optional uint32 processes = 1;
optional uint32 hosts = 2;
}
optional OnlineContentApps online_content_apps = 2;
message OnlineWorkers {
optional uint32 processes = 1;
optional uint32 hosts = 2;
}
optional OnlineWorkers online_workers = 3;
message Component {
required string name = 1;
required string version = 2;
}
repeated Component components = 4;
optional uint32 postgresql_version = 5;
message RBACStats {
optional uint32 users = 1;
optional uint32 groups = 2;
optional uint32 domains = 3;
optional uint32 custom_access_policies = 4;
optional uint32 custom_roles = 5;
}
optional RBACStats rbac_stats = 6;
}