You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unsure if this is an enhancement request or a bug report, but it looks like our fastify instrumentation does not collect the request bodies as captured by the standard fastify-formbody middlware. Fastify populates it's own Request object's body property (request.body) with these values, but [we read our request bodies in from the native node IncomeingMessage/Request object, which is different from fastify's.
You can observe this behavior by running the following small sample program
Unsure if this is an enhancement request or a bug report, but it looks like our fastify instrumentation does not collect the request bodies as captured by the standard
fastify-formbody
middlware. Fastify populates it's ownRequest
object'sbody
property (request.body
) with these values, but [we read our request bodies in from the native nodeIncomeingMessage/Request
object, which is different from fastify's.You can observe this behavior by running the following small sample program
and posting some form variables.
Fastify captures the request body, but if you examine the generated transactions, no request body is captured.
Ideally our Fastify instrumentation should match our express instrumentation's functionality and capture these values.
The text was updated successfully, but these errors were encountered: