HTTP Fieldsedit

HTTP-specific event fields.

http Fieldsedit

Information about the HTTP request and response.

request Fieldsedit

HTTP request

http.request.paramsedit

The query parameters or form values. The query parameters are available in the Request-URI and the form values are set in the HTTP body when the content-type is set to x-www-form-urlencoded.

http.request.headersedit

type: dict

A map containing the captured header fields from the request. Which headers to capture is configurable. If headers with the same header name are present in the message, they will be separated by commas.

http.request.bodyedit

type: text

The body of the HTTP request.

response Fieldsedit

HTTP response

http.response.codeedit

example: 404

The HTTP status code.

http.response.phraseedit

example: Not found.

The HTTP status phrase.

http.response.headersedit

type: dict

A map containing the captured header fields from the response. Which headers to capture is configurable. If headers with the same header name are present in the message, they will be separated by commas.

http.response.bodyedit

The body of the HTTP response.