syntax = "proto3"; option go_package = "./pb"; package pb; import "models/model_node.proto"; // HTTP访问日志 message HTTPAccessLog { string requestId = 48; int64 serverId = 1; int64 nodeId = 2; int64 locationId = 3; int64 rewriteId = 4; int64 originId = 5; string remoteAddr = 6; string rawRemoteAddr = 7; int32 remotePort = 8; string remoteUser = 9; string requestURI = 10; string requestPath = 11; int64 requestLength = 12; double requestTime = 13; string requestMethod = 14; string requestFilename = 15; bytes requestBody = 51; string scheme = 16; string proto = 17; int64 bytesSent = 18; int64 bodyBytesSent = 19; int32 status = 20; string statusMessage = 21; map sentHeader = 22; string timeISO8601 = 23; string timeLocal = 24; double msec = 25; int64 timestamp = 26; string host = 27; string referer = 28; string userAgent = 29; string request = 30; string contentType = 31; map cookie = 32; string args = 34; string queryString = 35; map header = 36; string serverName = 37; int32 serverPort = 38; string serverProtocol = 39; string hostname = 40; // 源站相关 string originAddress = 41; int32 originStatus = 52; // 错误信息 repeated string errors = 42; // 扩展 map attrs = 43; // WAF相关 int64 firewallPolicyId = 44; int64 firewallRuleGroupId = 45; int64 firewallRuleSetId = 46; int64 firewallRuleId = 47; repeated string firewallActions = 49; repeated string tags = 50; // 详情 Node node = 100; } message Strings { repeated string values = 1; }