Analytics tracking for AEM Search | Community
Skip to main content
September 2, 2020
Solved

Analytics tracking for AEM Search

  • September 2, 2020
  • 1 reply
  • 1043 views

How to capture the AEM search load time in Adobe analytics

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by raj_mandalapu

You can use getPageLoadTime plugin to measure the amount of time the page takes to completely load. check below link, in reports you need to filter by search results page.

https://docs.adobe.com/content/help/en/analytics/implementation/vars/plugins/getpageloadtime.html

 

If you want to measure time only search results then you need to do customization at your code level, usually in AEM to get search results we write servlet and make a request to it via AJAX call, you need to write java code or javascript code to find out page load time and pass it to your custom analytics search event, something like adding a new javascript object.

1 reply

raj_mandalapu
raj_mandalapuAccepted solution
Level 7
September 3, 2020

You can use getPageLoadTime plugin to measure the amount of time the page takes to completely load. check below link, in reports you need to filter by search results page.

https://docs.adobe.com/content/help/en/analytics/implementation/vars/plugins/getpageloadtime.html

 

If you want to measure time only search results then you need to do customization at your code level, usually in AEM to get search results we write servlet and make a request to it via AJAX call, you need to write java code or javascript code to find out page load time and pass it to your custom analytics search event, something like adding a new javascript object.