diff --git a/packages/rum-core/src/common/compress.js b/packages/rum-core/src/common/compress.js index 59cb83869..6e30423cd 100644 --- a/packages/rum-core/src/common/compress.js +++ b/packages/rum-core/src/common/compress.js @@ -77,7 +77,7 @@ function compressContext(context) { return null } const compressed = {} - const { page, http, response, destination, user, custom } = context + const { page, http, response, destination, user, custom, tags } = context if (page) { compressed.p = { @@ -113,6 +113,9 @@ function compressContext(context) { if (custom) { compressed.cu = custom } + if (tags) { + compressed.g = tags + } return compressed }