-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathrlc_ul_stats.proto
More file actions
executable file
·48 lines (34 loc) · 982 Bytes
/
rlc_ul_stats.proto
File metadata and controls
executable file
·48 lines (34 loc) · 982 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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
syntax = "proto2";
message t_ul_stats_item {
required uint32 count = 1;
required uint64 total = 2;
required uint32 min = 3;
required uint32 max = 4;
}
message t_ul_traffic_stats_item {
required uint32 count = 1;
required uint64 total = 2;
}
message t_ul_stats_um {
required t_ul_stats_item pdu_window_pkts = 1;
}
message t_ul_stats_am {
required t_ul_stats_item pdu_window_pkts = 1;
}
message t_ul_stats {
required uint32 du_ue_index = 1;
required uint32 is_srb = 2;
required uint32 rb_id = 3;
required uint32 rlc_mode = 4;
required t_ul_traffic_stats_item pdu_bytes = 5;
required t_ul_traffic_stats_item sdu_delivered_bytes = 6;
required t_ul_stats_item sdu_delivered_latency = 7;
optional t_ul_stats_um um = 8;
optional t_ul_stats_am am = 9;
}
message rlc_ul_stats {
required uint64 timestamp = 1;
repeated t_ul_stats stats = 2;
}