Performance Monitoring tool Integration | Community
Skip to main content
July 5, 2024
Question

Performance Monitoring tool Integration

  • July 5, 2024
  • 2 replies
  • 913 views

Hi everyone,

I'm curious to know if there's a way to integrate Lighthouse or a similar performance monitoring tool that can clearly identify the JavaScript affecting page load performance. This would help us address performance issues during the development stage before the code is migrated to production.

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

2 replies

bjoern__koth
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
July 6, 2024

Hi @bharkavi_r 

depends on which tool you are talking about? In general, sure you can place a script like lighthouse on your website to measure the data. You will still need to capture and track it e.g., in Adobe Analytics or a DB.

Also keep in mind that this kind of tools should be loaded as early as possible on the page, meaning if you are loading it through an asynchronous Launch integration, this may be quite late already and I would rather recommend a synchronous integration as high up in the <head> as possible. You will still be able to pick up the measured data later.

 

Maybe worthwhile having a look at DebugBear which I have quite good experiences with. It allows a combination of externally run "lab" tests (without a script on your page, just set up and crawled from a SaaS service), as well as placing a script on your page that does the real user  performance measurements.

 

 

Cheers from Switzerland!
March 28, 2025

Yes, you can integrate Lighthouse or similar tools like WebPageTest or Chrome DevTools to identify JavaScript performance issues. These tools provide insights into how JavaScript impacts page load by analyzing factors like render-blocking scripts, JavaScript execution time, and network requests. Integrating them into your development workflow, using CI/CD pipelines or local environments, helps identify and resolve performance issues before production.