Advanced Vue.js Performance Monitoring

Even the best developers end up with performance issues in their apps and sites. Sometimes we’re just so focused on building a new feature that we lose track of how performant these new bits of code are. Super normal.

How can we keep track of performance over time? What should be our goals? Are we as Vue.js developers responsible for all performance issues?

This article is a follow-up to our Vue.js Performance Guide that covers the basics of performance optimization. It helps you wrap your head around performance monitoring and its most important metrics.

Overview of performance metrics

Every metric has its pros and cons. We can collect a lot of data, but it’s good to know its limitations. We want to choose a mixture of metrics from all categories to tackle performance monitoring from all angles.

📐 Rule-based performance metrics

Rule-based metrics calculate performance scores based on a weighted collection of measurements, like the Lighthouse or PageSpeed scores.

Pros:

  • You get a simple metric that you can easily communicate with your team
  • It’s one / few combined metric(s) you can easily keep track of

Cons:

  • Most of these metrics are not based on actual experiences of your users
  • Building an average combined metric means we’re (over)simplifying
  • They are not actionable at all

🔢 Quantity-based performance metrics

Another group of metrics includes all things you can count directly: Your bundle size, or the number of requests.

Pros:

  • These metrics can quickly alert you of specific issues (e.g. uncompressed images, or heavy-weight third-party packages) - super actionable

Cons:

  • Most of these metrics are only theoretically connected to your real user’s experience

🙋 User-centric performance metrics

The third group of metrics show the perceived performance of a site, measuring load speed, responsiveness and smoothness.

Important metrics include for example the Largest Contentful Paint, First Input Delay and Cumulative Layout Shift, which you might know as Google's Web Vitals.

Pros:

  • These metrics describe your user’s experience, including how it responds to interactions
  • They include different experiences of your users, factoring in fast or slow networks, low-end or powerful devices,..

Cons:

  • These metrics are not as actionable on their own and often need trial and error to improve

Which performance metrics should I focus on?

There are thousands of individual metrics that you could measure, but there have been a lot standardization efforts in the last few years.

The Google Web Vitals are a good starting point. To help you make your own decisions, I’m going to share what exactly we’re focusing on with our projects, and why.

For us, the most important metrics are always based on user experience. Obviously we want to create a nice experience, but this focus has also worked out well regarding to our search rankings. The results of your Web Vitals are also factored in your page rank!

The metrics we regularly look at are:

  • Lighthouse performance score: One super simple value that combines important (user-centric) metrics and works as a high-level summary for us.
  • TTFB – Time To First Byte: This metric measures how long it takes a user to receive the first byte of our content. It helps us identify issues with slow server response times.
  • LCP – Largest Contentful Paint: This metric is part of the Core Web Vitals. It describes when the largest block of content is visible to users. It’s an important milestone in perceived performance.
  • FID – First Input Delay: Also part of the Core Web Vitals, it describes the response time when users try to first interact with our app. Slow response times and problems with interactivity are a direct factor for user frustration. As this metric can only be measured with real user interactions, we use TBT – Total Blocking Time for checks and debugging without user data.
  • CLS – Cumulative Layout Shift: The third Core Web Vital measures the visual stability of a page when it’s loaded. Does it jump around a lot as images get loaded for example?

It’s a nice set to start with and can easily be checked either manually via the devtools, or with automated workflows:

Personally, we use some automated "lab" checks while developing, but we track our real-world performance over time with our monitoring solution Sentry.

Sentry for Vue Vue Error & Performance Monitoring
icon-eye-dark Created with Sketch. 22.397

As a disclaimer: Sentry is a community sponsor of MadeWithVueJS, but we partnered with them because we’re avid users ourselves!

The data in our Sentry dashboard is collected in the "field": It logs all user interactions with our apps which gives us some more interesting data points about performance:

  • User misery: This is a custom metric by Sentry that counts the number of users who were frustrated because of unsatisfactory response times. It helps us identify and fix high-impact issues for our users quickly.
  • Apdex: Apdex is an industry standard metric to measure overall user satisfaction with the response time of an app, calculating the ratio of satisfactory to unsatisfactory experiences. It’s not really actionable, but it’s still a nice high-level score to keep track.
  • Trends / Most regressed transactions: We get a list of transactions that used to be more performant, but have regressed recently. As we’re continuously deploying, this helps us keep track of issues with new releases.

Benefits of performance monitoring tools

Honestly, we’re a small pragmatic team. We’re not using a monitoring tool because we love staring at data, but because it makes our lives easier and our user’s experience better.

  • Notifications for UX and performance issues: We have alerts set up when key metrics for important pages / transactions get bad
  • End-to-end debug information: We can trace issues through our whole stack (Vue.js + Laravel) and also see information about framework- / Vue-specific problems. (Read our article about how we traced a performance issue from our frontend to our backend to see how that looks like!)
  • Data quality: Data from our users and customers is the most meaningful and reliable in our opinion.

No matter which performance monitoring tool you choose, most of them are pretty straightforward to set up for your apps. It's worth it for the peace of mind you get!

Vue.js performance tracing in your devtools

If you want to take a closer look at the loading processes of your Vue app, you can activate the performance mode. With setting app.config.performance in your Vue apps to true, you will see a timeline in the performance tab / timeline panel. (Note: This only works in dev mode!)

It shows you when each component got initiated (the instance was created), rendered (the VDom structure was created) and patched (the VDom structure was added to the actual DOM). This can help you identify which component might be causing a performance bottleneck in your app and stay sane while debugging it.

Performance goals and budgets

Before you start measuring and monitoring now, it's a good idea to define some target values. We want our app to load fast, but when do we consider it to be "slow"? When do we fail a test, and when do we want to be alerted?

Example goals could look like this:

  • Our product pages must score > 90 on Lighthouse performance audits
  • Our app dashboard needs to be ready to use (completely loaded and interactive) in under 5 seconds
  • Our startpage should be visually complete in under 4 seconds
  • ...

This set of limits for our performance metrics is also called a performance budget.

How to define a performance budget for my app?

The limits and metrics in your budget will be unique, as it depends on the type of app you’re building. Do you need to load a lot of data and images or is it text-focused? Do you need to load content in real time or do you only display static lists?

To create your first performance budget, identify core pages like the start page, important landing pages, your app dashboard, shopping cart, product pages etc.

Then you can try these strategies:

  • Approach recommended values / benchmarks for your metrics (see e.g. the recommended thresholds for the Core Web Vitals)
  • Measure your status quo and aim for a 20% better result
  • Measure your competitors and aim for a 20% better result

If you haven't measured anything before, it's usually no problem to optimize for 20% better results (see basic strategies in our Vue.js Performance Guide). Then try to stay within this budget over time!

Do I need a performance budget as a Vue developer?

Your Vue frontend is only one part that contributes to good performance. The performance budget is also used up by your designers font choices, your marketing manager’s need for a chat widget and your backend engineer’s API performance.

Still, JavaScript is one of the most expensive parts of your budget, especially if you’re building SPAs. You have a lot of impact!

A performance budget is a great way to take on your part of the responsibility, and open up the conversation about performance with your colleagues.

You could share some case studies showing the business impact of optimizing performance metrics, or discuss UX patterns optimized for the Core Web Vitals.

Performance is always a continuous team effort 💪

More resources for (Vue) performance monitoring

Similar Articles
Plans of the next Iteration of Vue.js [via The Vue Point]
04.10.2018  •  in #Bookmarks
Evan You presents an in-depth preview of the plan for the next major version of Vue.js!
#intervue: Valia Walsk, Full-Stack-Developer & avid Vue.js-learner
25.06.2019  •  in #Intervue
What is it like to start out with Vue.js when you're relatively new to frontend development? We interviewed Full Stack Developer Valia Walsk to find out! She shares her experiences and favourite resources with you.