proto/BussFlowExternal.proto
2022-06-20 16:30:45 +08:00

43 lines
1.5 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 BussFlowExternal {
int32 table_id = 1;
string id = 2;
int64 probe_if = 3;//接口号
string channel = 4;//营业厅渠道:前台或者分析服务器给出,渠道标识
string system_name = 5; //外部系统名称
string interface_id = 6;// 业务接口编码
string session_id = 7;//sessionid
string phone_id = 8;//受理手机号码
string net_type = 9;
string net_segment = 10;//网段标识(客户-web)
int64 request_ip = 11;//Web客户端IP
int64 request_port = 12;//Web客户端端口
int64 response_ip = 13;//Web服务器IP
int64 response_port = 14;//Web服务器端口
int64 start_tv_sec = 15;//Web开始时间秒
int64 start_tv_usec = 16;//开始时间微秒
int64 end_tv_sec = 17;//结束时间秒
int64 end_tv_usec = 18;//结束时间微妙
int32 deal_state = 19;//Web操作成功/失败标识1成功0失败
int64 server_translate_time = 20;//Web服务器传输耗时
int64 server_response_time = 21;//Web服务器响应时间
string begin_url = 22;//url
string operating_sytem = 23;//操作系统
int32 server_res_code = 24; //Web系统返回码
string browser = 25;//浏览器
string business_detail_mesg = 26;//要获取的指标
int64 insert_time = 27;//插入时间? 没有被使用
string business_involve_msg = 28; //要关联的指标
int32 is_uncomplete = 29;
int64 time_flag = 30;
}