From 5444a76613812343b7cd51e48c89c42b916e6a22 Mon Sep 17 00:00:00 2001 From: Gert Hengeveld Date: Fri, 24 Jun 2022 20:19:44 +0200 Subject: [PATCH] Fix serialization of object properties --- lib/instrumenter/src/instrumenter.ts | 5 +++++ 1 file changed, 5 insertions(+) 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; };