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

77 lines
3.4 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 BussFlowWeb {
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; //会话id
uint32 request_ip = 26; //请求ip地址
uint32 request_port = 27; //请求端口
uint32 response_ip = 28; //响应ip地址
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; //cookie长度
uint32 begin_url_len = 55; //主URL长度
uint32 refer_url_len = 56; //引用URL长度
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; //cookie详情报文
string begin_url = 63; //主url详情
string refer_url = 64; //引用url详情
string remain_data = 65;
}