@@ -121,10 +121,11 @@ type HttpRuleAlert struct {
121
121
} `json:"request,omitempty" bson:"request,omitempty"`
122
122
123
123
Response struct {
124
- StatusCode int `json:"statusCode,omitempty" bson:"statusCode,omitempty"` // e.g., 200
125
- Header map [string ]string `json:"header,omitempty" bson:"header,omitempty"` // e.g., "Content-Type" -> ["application/json"]
126
- Body string `json:"body,omitempty" bson:"body,omitempty"` // e.g., "<html>...</html>"
127
- Proto string `json:"proto,omitempty" bson:"proto,omitempty"` // e.g., "HTTP/1.1"
124
+ StatusCode int `json:"statusCode,omitempty" bson:"statusCode,omitempty"` // e.g., 200
125
+ Header map [string ]string `json:"header,omitempty" bson:"header,omitempty"` // e.g., "Content-Type" -> ["application/json"]
126
+ Body string `json:"body,omitempty" bson:"body,omitempty"` // e.g., "<html>...</html>"
127
+ Proto string `json:"proto,omitempty" bson:"proto,omitempty"` // e.g., "HTTP/1.1"
128
+ FullResponse string `json:"fullResponse,omitempty" bson:"fullResponse,omitempty"` // e.g., "{...}"
128
129
} `json:"response,omitempty" bson:"response,omitempty"`
129
130
130
131
SourcePodInfo RuntimeAlertK8sDetails `json:"sourcePodInfo,omitempty" bson:"podInfo,omitempty"`
0 commit comments