2022-06-20 08:30:45 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2022-07-04 05:42:09 +00:00
|
|
|
import "Base.proto";
|
|
|
|
|
2022-06-20 08:30:45 +00:00
|
|
|
option java_multiple_files = false;
|
|
|
|
option java_package = "com.yuandian.dataflow.proto.msgtype";
|
|
|
|
option go_package = "../grpc-gen;grpcgen";
|
|
|
|
|
|
|
|
|
|
|
|
package dataflow;
|
|
|
|
|
|
|
|
message QoeFlow {
|
2022-06-29 01:45:17 +00:00
|
|
|
int32 table_id = 1; //编号18
|
2022-07-04 05:42:09 +00:00
|
|
|
IPAddress src_ip = 2;
|
|
|
|
IPAddress dst_ip = 3;
|
2022-06-29 01:45:17 +00:00
|
|
|
uint32 s_tv_sec = 4;
|
|
|
|
uint32 s_tv_usec = 5;
|
|
|
|
uint32 l_tv_sec = 6;
|
|
|
|
uint32 l_tv_usec = 7;
|
|
|
|
uint32 dst2_respon_num = 8;
|
|
|
|
uint32 dst2_fast = 9;
|
|
|
|
uint32 dst2_fast_expected = 10;
|
|
|
|
uint32 dst2_expected_degrated = 11;
|
|
|
|
uint32 dst2_degrated_service = 12;
|
|
|
|
uint32 dst2_service_availability = 13;
|
|
|
|
uint32 dst2_respon_timeout = 14;
|
|
|
|
uint32 dst2_respon_success = 15;
|
|
|
|
uint32 dst2_respon_fail = 16;
|
|
|
|
uint32 dst2_respin_peek = 17;
|
|
|
|
uint32 dst2_respon_average = 18;
|
|
|
|
uint32 cs_window = 19;
|
|
|
|
uint32 sc_window = 20;
|
|
|
|
uint32 cs_reset = 21;
|
|
|
|
uint32 sc_reset = 22;
|
|
|
|
uint32 cs_retran = 23;
|
|
|
|
uint32 sc_retran = 24;
|
|
|
|
uint32 app_id = 25;
|
|
|
|
uint32 app_group_id = 26;
|
|
|
|
uint32 probe_if = 27;
|
|
|
|
uint32 app_style = 28;
|
|
|
|
uint32 time_flag = 29;
|
|
|
|
uint32 conn_setup_tm = 30;
|
|
|
|
uint32 data_transfer_tm = 31;
|
|
|
|
uint32 retrans_delay_tm = 32;
|
|
|
|
uint32 network_inbound = 33;
|
|
|
|
uint32 network_outbound = 34;
|
|
|
|
uint32 new_session = 35;
|
|
|
|
uint32 user_events = 36;
|
|
|
|
uint32 server_events = 37;
|
|
|
|
uint32 conn_setup_peek = 38;
|
|
|
|
int32 vlan_id = 39;
|
|
|
|
|
2022-06-20 08:30:45 +00:00
|
|
|
}
|