cookies — the Cookie header from the request, parsed into a hash
body — the body of the request, parsed into a hash. Supports JSON and form data; other content types will not attach a body to the event
httpVersion — the HTTP version of the request, e.g. HTTP/1.1
cookies will not be captured by default as the default meta_data_filters includes /cookie/i, however the request body and http version will be captured by default
If the body is form data, it is already present in params. In the next major release, params will only contain query string parameters
Goal
cookies
— theCookie
header from the request, parsed into a hashbody
— the body of the request, parsed into a hash. Supports JSON and form data; other content types will not attach a body to the eventhttpVersion
— the HTTP version of the request, e.g.HTTP/1.1
cookies
will not be captured by default as the defaultmeta_data_filters
includes/cookie/i
, however the request body and http version will be captured by defaultIf the
body
is form data, it is already present inparams
. In the next major release,params
will only contain query string parameters