Troubleshooting personalization and tracking events
If personalized pages do not render as expected or XM Cloud Pages Analyze does not show the data you were expecting to see, you must troubleshoot your implementation.
Personalized page rendering issues
If personalized pages do not render as expected, you can troubleshoot the Personalize middleware. The middleware has extensive debug trace logging that can prove helpful.
To troubleshoot the Personalize middleware:
-
Turn on debug logging for the middleware by setting the
DEBUGenvironment variable value to the Next.js Personalize add-on namespace. For example:DEBUG=sitecore-jss:personalize. -
Verify that the
SITECORE_EDGE_CONTEXT_IDenvironment variable has the correct values for your environment and that you are using the correct variant of it (Live or Preview). -
If you notice requests to CDP or Edge time out, increase the timeout value by setting the corresponding
PERSONALIZE_MIDDLEWARE_CDP_TIMEOUTorPERSONALIZE_MIDDLEWARE_EDGE_TIMEOUTenvironment variable to a value higher than the default 400 milliseconds. We also recommend adding acacheTimeoutproperty (with a value in seconds of between600and1200) to thecdpConfigoredgeConfigconfiguration objects withinpersonalize.ts, as shown in the following example:RequestResponseedgeConfig: { ... cacheTimeout: 1000, },
Unexpected data in XM Cloud Pages Analyze
If you do not see the expected data in XM Cloud Pages Analyze, you can troubleshoot the Page View events.
Page View events are triggered client-side.
To start troubleshooting Page View events:
-
In the browser, open the developer tools and check the console for any errors. Failing requests provide detailed error messages such as client key is not valid.
-
Verify that the
SITECORE_EDGE_CONTEXT_IDenvironment variable has the correct values for your environment and that you are using the correct variant of it (Live or Preview).