2022-06-20 08:30:45 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option java_multiple_files = false;
|
|
|
|
option java_package = "com.yuandian.dataflow.proto.msgtype";
|
|
|
|
option go_package = "../grpc-gen;grpcgen";
|
|
|
|
|
|
|
|
|
|
|
|
package dataflow;
|
|
|
|
|
|
|
|
message BussFlowWeb {
|
2022-06-29 01:45:17 +00:00
|
|
|
int32 table_id = 1; //编号22
|
|
|
|
uint32 msg_type = 2;
|
|
|
|
string msg_version = 3;
|
|
|
|
uint32 msg_seq = 4;
|
|
|
|
uint32 msg_len = 5;
|
|
|
|
uint64 src_mac = 6;
|
|
|
|
uint64 dst_mac = 7;
|
|
|
|
uint32 vlan_id = 8;
|
|
|
|
uint32 tos = 9;
|
|
|
|
uint32 retran_count = 10;
|
|
|
|
uint32 reset_count = 11;
|
|
|
|
uint32 zerowin_count = 12;
|
|
|
|
uint32 protocol = 13;
|
|
|
|
uint32 response_bytes = 14;
|
|
|
|
uint32 request_bytes = 15;
|
|
|
|
uint32 response_packets = 16;
|
|
|
|
uint32 request_packets = 17;
|
|
|
|
string seq_ack = 18;
|
|
|
|
uint32 recog_status = 19;
|
|
|
|
uint32 req_method = 20;
|
|
|
|
string content_type = 21;
|
|
|
|
string accept = 22;
|
|
|
|
uint32 probe_if = 23;
|
|
|
|
string channel = 24;
|
|
|
|
string sessionid = 25;
|
|
|
|
uint32 request_ip = 26;
|
|
|
|
uint32 request_port = 27;
|
|
|
|
uint32 response_ip = 28;
|
|
|
|
uint32 response_port = 29;
|
|
|
|
uint32 start_time_tv_sec = 30;
|
|
|
|
uint32 start_time_tv_usec = 31;
|
|
|
|
uint32 end_time_tv_sec = 32;
|
|
|
|
uint32 end_time_tv_usec = 33;
|
|
|
|
int64 server_translate_time = 34;
|
|
|
|
uint32 server_response_start_time_tv_sec = 35;
|
|
|
|
uint32 server_response_start_time_tv_usec = 36;
|
|
|
|
uint32 server_response_end_time_tv_sec = 37;
|
|
|
|
uint32 server_response_end_time_tv_usec = 38;
|
|
|
|
int64 server_response_time = 39;
|
|
|
|
int64 client_translate_time = 40;
|
|
|
|
int64 locate_server_translate_time = 41;
|
|
|
|
int64 locate_server_response_time = 42;
|
|
|
|
int64 locate_client_translate_time = 43;
|
|
|
|
string x_requested_with = 44;
|
|
|
|
string operating_sytem = 45;
|
|
|
|
uint32 server_res_code = 46;
|
|
|
|
string browser = 47;
|
|
|
|
int32 is_uncomplete = 48;
|
|
|
|
uint32 time_flag = 49;
|
|
|
|
uint32 detail_msg_len = 50;
|
|
|
|
uint32 key_msg_len = 51;
|
|
|
|
uint32 req_len = 52;
|
|
|
|
uint32 res_len = 53;
|
|
|
|
uint32 cookie_len = 54;
|
|
|
|
uint32 begin_url_len = 55;
|
|
|
|
uint32 refer_url_len = 56;
|
|
|
|
uint32 remain_len = 57;
|
|
|
|
string bussiness_detail_mesg = 58;
|
|
|
|
string bussiness_key_mesg = 59;
|
|
|
|
string req_data = 60;
|
|
|
|
string res_data = 61;
|
|
|
|
string cookie_data = 62;
|
|
|
|
string begin_url = 63;
|
|
|
|
string refer_url = 64;
|
|
|
|
string remain_data = 65;
|
2022-06-20 08:30:45 +00:00
|
|
|
|
|
|
|
}
|