proto/BussFlowMidd.proto
2022-06-29 10:59:49 +08:00

64 lines
2.8 KiB
Protocol Buffer

syntax = "proto3";
option java_multiple_files = false;
option java_package = "com.yuandian.dataflow.proto.msgtype";
option go_package = "../grpc-gen;grpcgen";
package dataflow;
message BussFlowMidd {
int32 table_id = 1; //编号23
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 probe_if = 20; //探针编号
string channel = 21; //通道
uint32 request_ip = 22; //请求地址
uint32 request_port = 23; //请求端口
uint32 response_ip = 24; //响应地址
uint32 response_port = 25; //响应端口
uint32 start_time_tv_sec = 26; //开始时间(秒)
uint32 start_time_tv_usec = 27; //开始时间(毫秒)
uint32 end_time_tv_sec = 28; //结束时间(秒)
uint32 end_time_tv_usec = 29; //结束时间(毫秒)
uint32 deal_state = 30;
uint32 server_res_code = 31; //服务器返回状态
int64 server_translate_time = 32; //服务器传输时间
uint32 server_response_start_time_tv_sec = 33; //服务器响应开始时间(秒)
uint32 server_response_start_time_tv_usec = 34; //服务器响应开始时间(毫秒)
uint32 server_response_end_time_tv_sec = 35; //服务器响应结束时间(秒)
uint32 server_response_end_time_tv_usec = 36; //服务器响应结束时间(毫秒)
int64 server_response_time = 37; //服务器响应时长
int64 client_translate_time = 38; //客户传输时间
int32 is_uncomplete = 39; //数据完整标志
uint32 time_flag = 40; //时间戳
uint32 detail_msg_len = 41; //业务纤细信息长度
uint32 key_msg_len = 42; //业务关键字长度
uint32 api_len = 43; //应用名称长度
uint32 req_len = 44; //请求详情报文长度
uint32 res_len = 45; //响应详情报文长度
uint32 remain_len = 46;
string bussiness_detail_mesg = 47; //业务纤细信息
string bussiness_key_mesg = 48; //业务关键字
string api = 49; //应用名称
string req_data = 50; //请求详情报文
string res_data = 51; //响应详情报文
string remain_data = 52;
}