Module http

Module http 

Source
Expand description

Fields related to HTTP activity. Use the url field set to store the url of the request.

Constants§

HTTP_REQUEST_BODY_BYTES
Size in bytes of the request body.
HTTP_REQUEST_BODY_CONTENT
The full HTTP request body.
HTTP_REQUEST_BYTES
Total size in bytes of the request (body and headers).
HTTP_REQUEST_ID
A unique identifier for each HTTP request to correlate logs between clients and servers in transactions. The id may be contained in a non-standard HTTP header, such as X-Request-ID or X-Correlation-ID.
HTTP_REQUEST_METHOD
HTTP request method. The value should retain its casing from the original event. For example, GET, get, and GeT are all considered valid values for this field.
HTTP_REQUEST_MIME_TYPE
Mime type of the body of the request. This value must only be populated based on the content of the request body, not on the Content-Type header. Comparing the mime type of a request with the request’s Content-Type header can be helpful in detecting threats or misconfigured clients.
HTTP_REQUEST_REFERRER
Referrer for this HTTP request.
HTTP_RESPONSE_BODY_BYTES
Size in bytes of the response body.
HTTP_RESPONSE_BODY_CONTENT
The full HTTP response body.
HTTP_RESPONSE_BYTES
Total size in bytes of the response (body and headers).
HTTP_RESPONSE_MIME_TYPE
Mime type of the body of the response. This value must only be populated based on the content of the response body, not on the Content-Type header. Comparing the mime type of a response with the response’s Content-Type header can be helpful in detecting misconfigured servers.
HTTP_RESPONSE_STATUS_CODE
HTTP response status code.
HTTP_VERSION
HTTP version.