Data Fields:
Field |
Description |
Example |
HTTP.Request.Command | The HTTP command that was used in a request. |
HTTP.Request.Command == "GET" |
HTTP.Request.URI |
The resource that was accessed, for instance a web page. |
HTTP.Request.URI.Contains("msn") |
HTTP.Response.StatusCode | The status code returned in response to an HTTP request. You can use this to find errors and redirects. |
HTTP.Response.StatusCode.contains("200") |
Properties:
Property | Description | Example |
HTTPSummary | The specific HTTP level description for the frame (Request, Response, Payload, etc...)
|
HTTPSummary.contains("400") |
HTTPStatusReason | The HTTP status (Found, OK, No Content, Moved Temporarily, Moved Permanently, etc...) | HTTPStatus.Reason.contains("OK") |
HTTPSummaryType | This is a string that represents if the check sum is valid or not. This could be "Good" or "Bad". | HTTPSummaryType.contains("jpeg") |