diff --git a/lib/instrumenter/src/instrumenter.ts b/lib/instrumenter/src/instrumenter.ts index 86b5f64cc4b..71170dcfc27 100644 --- a/lib/instrumenter/src/instrumenter.ts +++ b/lib/instrumenter/src/instrumenter.ts @@ -415,6 +415,11 @@ export class Instrumenter { ) { return { __class__: { name: value.constructor.name } }; } + if (Object.prototype.toString.call(value) === '[object Object]') { + return Object.fromEntries( + Object.entries(value).map(([key, val]) => [key, serializeValues(val)]) + ); + } return value; };