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-IDorX-Correlation-ID. - HTTP_
REQUEST_ METHOD - HTTP request method.
The value should retain its casing from the original event. For example,
GET,get, andGeTare 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-Typeheader. 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-Typeheader. 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.