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

34 lines
806 B
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 BusinessBodyData {
int32 table_id = 1;
string relvance_data_id = 2;
int64 request_ip = 3;
int32 request_port = 4;
int64 response_ip = 5;
int32 response_port = 6;
int64 start_tv_sec = 7;//开始时间秒
int64 start_tv_usec = 8;//开始时间毫秒
int64 end_tv_sec = 9;//结束时间秒
int64 end_tv_usec = 10;//结束时间微妙
string resource_code = 11;
string no_parameter_recognition = 12;
string original_recognition = 13;
string request_cookie = 14;
string request_body_context = 15;
string response_body_context = 16;
int32 filter_id = 17;
string business_detail_mesg = 18;
}