Skip to main content

Mobile Performance - Why Measuring Network Is Not Enough

Amichai Nitsan

Why isn’t it enough to simply measure network performance? In this post, I will try to explain how UI response time is different than network performance.

Let's say you own a mobile application for hotel reservations. This is a highly competitive market, and you are trying to achieve the best user experience and make your application as fast as possible.

Processing Time

When a user enters their selection for hotel search, the application contacts the server and asks for the relevant search results. For efficiency, the server sends the results in a very efficient and compact format.
When the application receives the data, it has to process it.

First, it might need to decompress the data.

Secondly, the hotel’s list has to be sorted per user preferences. If hotel images are also displayed, the images must be opened and displayed. This processing takes time. And sometimes, it takes a lot of time.

The processing time also varies depending on the device. When the display is larger (as it is on tablets), your app needs to process more items because more items are visible. It also takes longer on weaker CPU devices. Each user experiences the performance differently, even if network time is the same.

Simply put, UI Response Time is the time elapsed from when the user clicks the hotel search button until the screen is loaded with the search results. No more, no less. This is the time you want to see in your monitoring tool.

Background Operations

Suppose your hotel search application has a great feature – once every ten minutes, it contacts a few external servers for price alerts. This is a background process – it will happen regardless of what the user is doing with the application.

Most importantly – these network operations don’t affect user experience at all! When you try to prioritize your work according to the monitoring results, it is very important to distinguish between these operations, and give them lower priority than operations that actually impact user experience.

Out-Of-Screen Content

Here’s another trick your developers are using to improve user experience: when a search request is sent, only part of the data is retrieved from the server. Usually it is just enough data to fully occupy the screen, and a little bit more (for scrolling).

But what about the rest of the data? In the old days of Web 1.0, a long list of results was divided into pages, with “next” and “previous” buttons to navigate between them. More modern applications are using a different approach – they will continue to fetch the rest of the search results in the background, allowing the user to interact with what they already see on the screen. This is probably one of the biggest benefits of Web 2.0.

Measuring the UI response times of such actions is very tricky. The reported time should be from the user’s perspective – meaning the report has to ignore network operations that don’t result directly in screen rendering. If the user selects one of the hotels for details, the results of those out-of-screen operations have no effect on the UI response time.

Look for a tool that will monitor your mobile application’s real user experience - and more specifically user-perceived UI response time.

Amichai Nitsan is a Senior Architect at HP Software.

Hot Topics

The Latest

In APMdigest's 2026 Observability Predictions Series, industry experts offer predictions on how Observability and related technologies will evolve and impact business in 2025. Part 6 covers OpenTelemetry ...

In APMdigest's 2026 Observability Predictions Series, industry experts offer predictions on how Observability and related technologies will evolve and impact business in 2025. Part 5 covers APM and infrastructure monitoring ...

AI continues to be the top story across the industry, but a big test is coming up as retailers make the final preparations before the holiday season starts. Will new AI powered features help load up Santa's sleigh this year? Or are early adopters in for unpleasant surprises in the form of unexpected high costs, poor performance, or even service outages? ...

In APMdigest's 2026 Observability Predictions Series, industry experts offer predictions on how Observability and related technologies will evolve and impact business in 2025. Part 4 covers user experience, digital performance, website performance and ITSM ...

In APMdigest's 2026 Observability Predictions Series, industry experts offer predictions on how Observability and related technologies will evolve and impact business in 2025. Part 3 covers more predictions about Observability ...

In APMdigest's 2026 Observability Predictions Series, industry experts offer predictions on how Observability and related technologies will evolve and impact business in 2025. Part 2 covers predictions about Observability and AIOps ...

The Holiday Season means it is time for APMdigest's annual list of predictions, covering Observability and other IT performance topics. Industry experts — from analysts and consultants to the top vendors — offer thoughtful, insightful, and often controversial predictions on how Observability, AIOps, APM and related technologies will evolve and impact business in 2026 ...

IT organizations are preparing for 2026 with increased expectations around modernization, cloud maturity, and data readiness. At the same time, many teams continue to operate with limited staffing and are trying to maintain complex environments with small internal groups. These conditions are creating a distinct set of priorities for the year ahead. The DataStrike 2026 Data Infrastructure Survey Report, based on responses from nearly 280 IT leaders across industries, points to five trends that are shaping data infrastructure planning for 2026 ...

Developers building AI applications are not just looking for fault patterns after deployment; they must detect issues quickly during development and have the ability to prevent issues after going live. Unfortunately, traditional observability tools can no longer meet the needs of AI-driven enterprise application development. AI-powered detection and auto-remediation tools designed to keep pace with rapid development are now emerging to proactively manage performance and prevent downtime ...

Every few years, the cybersecurity industry adopts a new buzzword. "Zero Trust" has endured longer than most — and for good reason. Its promise is simple: trust nothing by default, verify everything continuously. Yet many organizations still hesitate to implement Zero Trust Network Access (ZTNA). The problem isn't that ZTNA doesn't work. It's that it's often misunderstood ...

Mobile Performance - Why Measuring Network Is Not Enough

Amichai Nitsan

Why isn’t it enough to simply measure network performance? In this post, I will try to explain how UI response time is different than network performance.

Let's say you own a mobile application for hotel reservations. This is a highly competitive market, and you are trying to achieve the best user experience and make your application as fast as possible.

Processing Time

When a user enters their selection for hotel search, the application contacts the server and asks for the relevant search results. For efficiency, the server sends the results in a very efficient and compact format.
When the application receives the data, it has to process it.

First, it might need to decompress the data.

Secondly, the hotel’s list has to be sorted per user preferences. If hotel images are also displayed, the images must be opened and displayed. This processing takes time. And sometimes, it takes a lot of time.

The processing time also varies depending on the device. When the display is larger (as it is on tablets), your app needs to process more items because more items are visible. It also takes longer on weaker CPU devices. Each user experiences the performance differently, even if network time is the same.

Simply put, UI Response Time is the time elapsed from when the user clicks the hotel search button until the screen is loaded with the search results. No more, no less. This is the time you want to see in your monitoring tool.

Background Operations

Suppose your hotel search application has a great feature – once every ten minutes, it contacts a few external servers for price alerts. This is a background process – it will happen regardless of what the user is doing with the application.

Most importantly – these network operations don’t affect user experience at all! When you try to prioritize your work according to the monitoring results, it is very important to distinguish between these operations, and give them lower priority than operations that actually impact user experience.

Out-Of-Screen Content

Here’s another trick your developers are using to improve user experience: when a search request is sent, only part of the data is retrieved from the server. Usually it is just enough data to fully occupy the screen, and a little bit more (for scrolling).

But what about the rest of the data? In the old days of Web 1.0, a long list of results was divided into pages, with “next” and “previous” buttons to navigate between them. More modern applications are using a different approach – they will continue to fetch the rest of the search results in the background, allowing the user to interact with what they already see on the screen. This is probably one of the biggest benefits of Web 2.0.

Measuring the UI response times of such actions is very tricky. The reported time should be from the user’s perspective – meaning the report has to ignore network operations that don’t result directly in screen rendering. If the user selects one of the hotels for details, the results of those out-of-screen operations have no effect on the UI response time.

Look for a tool that will monitor your mobile application’s real user experience - and more specifically user-perceived UI response time.

Amichai Nitsan is a Senior Architect at HP Software.

Hot Topics

The Latest

In APMdigest's 2026 Observability Predictions Series, industry experts offer predictions on how Observability and related technologies will evolve and impact business in 2025. Part 6 covers OpenTelemetry ...

In APMdigest's 2026 Observability Predictions Series, industry experts offer predictions on how Observability and related technologies will evolve and impact business in 2025. Part 5 covers APM and infrastructure monitoring ...

AI continues to be the top story across the industry, but a big test is coming up as retailers make the final preparations before the holiday season starts. Will new AI powered features help load up Santa's sleigh this year? Or are early adopters in for unpleasant surprises in the form of unexpected high costs, poor performance, or even service outages? ...

In APMdigest's 2026 Observability Predictions Series, industry experts offer predictions on how Observability and related technologies will evolve and impact business in 2025. Part 4 covers user experience, digital performance, website performance and ITSM ...

In APMdigest's 2026 Observability Predictions Series, industry experts offer predictions on how Observability and related technologies will evolve and impact business in 2025. Part 3 covers more predictions about Observability ...

In APMdigest's 2026 Observability Predictions Series, industry experts offer predictions on how Observability and related technologies will evolve and impact business in 2025. Part 2 covers predictions about Observability and AIOps ...

The Holiday Season means it is time for APMdigest's annual list of predictions, covering Observability and other IT performance topics. Industry experts — from analysts and consultants to the top vendors — offer thoughtful, insightful, and often controversial predictions on how Observability, AIOps, APM and related technologies will evolve and impact business in 2026 ...

IT organizations are preparing for 2026 with increased expectations around modernization, cloud maturity, and data readiness. At the same time, many teams continue to operate with limited staffing and are trying to maintain complex environments with small internal groups. These conditions are creating a distinct set of priorities for the year ahead. The DataStrike 2026 Data Infrastructure Survey Report, based on responses from nearly 280 IT leaders across industries, points to five trends that are shaping data infrastructure planning for 2026 ...

Developers building AI applications are not just looking for fault patterns after deployment; they must detect issues quickly during development and have the ability to prevent issues after going live. Unfortunately, traditional observability tools can no longer meet the needs of AI-driven enterprise application development. AI-powered detection and auto-remediation tools designed to keep pace with rapid development are now emerging to proactively manage performance and prevent downtime ...

Every few years, the cybersecurity industry adopts a new buzzword. "Zero Trust" has endured longer than most — and for good reason. Its promise is simple: trust nothing by default, verify everything continuously. Yet many organizations still hesitate to implement Zero Trust Network Access (ZTNA). The problem isn't that ZTNA doesn't work. It's that it's often misunderstood ...