All Products
Search
Document Center

Application Real-Time Monitoring Service:RUM dashboard metric descriptions

Last Updated:Mar 11, 2026

This topic describes the metrics and fields on the Real User Monitoring (RUM) dashboard and console in Application Real-Time Monitoring Service (ARMS). Use these definitions to interpret dashboard values, set performance baselines, and identify bottlenecks.

Dashboard metrics

Common metrics

MetricDescriptionCalculation
PVPage views -- the total number of page view events.Deduplicated by view.id across page, behavior, and resource loading events.
UVUser views -- the total number of distinct users.Deduplicated by user.id.
Number of sessionsTotal user sessions. A session spans from when a user enters a page until the page is closed.Deduplicated by session.id.
Sessions per userAverage number of sessions per user.Number of sessions / UV
Average session duration per userAverage time a user spends across all sessions.Each session duration = max(session.end) - min(session.start). Average = total duration of all sessions / UV.

Resource loading

Resources represent network requests defined by HTTP protocol and web performance standards. They fall into two categories: API requests and static resources.

MetricDescriptionDetails
Number of resourcesTotal resource load count.
Number of API loadsTotal API request count.Includes requests with resource type xhr, fetch, or api. Tracks server interaction such as response codes and response content.
Number of failed API loadsTotal failed API request count.
Number of static resource loads (CDN trend)Total static resource load count.Includes resource types such as css, javascript, image, and media. Tracks resource type, CDN usage, and network stability.
Number of failed static resource loads (CDN trend)Total failed static resource load count.

Resource loading performance

These metrics break down the time spent in each phase of a resource request. Use them to pinpoint bottlenecks in connection setup, DNS resolution, or data transfer.

MetricDescriptionBrowser Performance API
ConnectTime to establish a connection to the server.connectEnd - connectStart
DNSTime to resolve the DNS name for the last request.domainLookupEnd - domainLookupStart
SSLTime to complete the TLS handshake. Not reported if the last request does not use HTTPS.connectEnd - secureConnectionStart
DownloadTime to download the response.responseEnd - responseStart
DurationTotal end-to-end time to load the resource.responseEnd - startTime

Exceptions

An exception is an unexpected event during code execution. The available exception types depend on the platform:

PlatformException types
Web, H5, Mini ProgramJS errors, blank screens, custom exceptions
AndroidCrashes, JS errors, Application Not Responding (ANR), custom exceptions
iOSCrashes, JS errors, custom exceptions
MetricDescriptionCalculation
Number of exceptionsTotal exception count across all types.
Affected usersDistinct users who encountered at least one exception.Deduplicated by user.id where event type = abnormal.
Affected sessionsDistinct sessions in which at least one exception occurred.Deduplicated by session.id where event type = abnormal.
Affected page viewsDistinct page views in which at least one exception occurred.Deduplicated by view.id where event type = abnormal.
Crash ratePercentage of sessions affected by crashes.Sessions with crashes / Total sessions
JS error ratePercentage of page views affected by JS errors.Page views with JS errors / Total page views

Stuttering

Stuttering occurs when the main thread becomes unresponsive, degrading the user experience. Unlike exceptions, stuttering is not caused by unexpected runtime errors. It typically results from unoptimized code or device performance limitations.

On Android and iOS, a stuttering event is recorded when the main thread is unresponsive for 5 consecutive seconds.

MetricDescriptionCalculation
Number of stuttersTotal stuttering event count.
Affected usersDistinct users who experienced stuttering.Deduplicated by user.id where event type = stuttering.
Stuttering ratePercentage of page views affected by stuttering.Page views with stuttering / PV

Page performance

These metrics track browser rendering and loading milestones. Use them to identify where page load time is spent and which phases to optimize.

MetricFull nameDescription
first_contentful_paintFirst Contentful Paint (FCP)Time until the browser first renders any DOM content -- text, images, SVGs, or canvas elements. Also referred to as blank screen time.
dom_interactiveTime to InteractiveTime until the page content becomes interactive.
dom_content_loadedHTML complete load time (DOM Ready time)Time until the initial HTML document is fully loaded and parsed. Does not wait for non-render-blocking resources such as stylesheets, images, or subframes.
dom_completeDOMTime until the page and all sub-resources are ready. At this point, the browser loading spinner has stopped.
load_eventPage full load timeTime until the page is fully loaded, including all sub-resources. Often used as a trigger for additional application logic. A page load time of less than 2 seconds is considered excellent, and up to 4 seconds is acceptable. A page load time greater than 5 seconds not only affects the website's search engine ranking but also severely impacts the user experience.
largest_contentful_paintLargest Contentful Paint (LCP)Time until the largest visible DOM element in the viewport is rendered. A time greater than 2.5s is marked as slow.
first_input_delayFirst Input Delay (FID)Delay between the user's first interaction with the page and the browser's response.
cumulative_layout_shiftCumulative Layout Shift (CLS)Quantifies unexpected layout shifts caused by dynamically loaded content such as third-party ads. A value of 0 means no shift occurred.

Startup analysis

Startup metrics are collected only by mobile SDKs (iOS, Android, and HarmonyOS).

Startup metrics measure the time from when a user opens an application until it becomes responsive. Startups are categorized as cold starts and hot starts.

Cold start time

A cold start occurs when the application launches from scratch with no existing process in memory.

PlatformMeasurement
AndroidFrom when ContentProvider completes its onCreate method to when onResume of the first Activity is called.
iOSFrom when the first object is loaded into memory to the first successful run loop after UIApplicationDidBecomeActiveNotification.
HarmonyOSSpans five stages: process creation and initialization, Application and Ability initialization, Ability/AbilityStage lifecycle, loading and drawing the home page, and secondary refresh of network data.

Hot start time

A hot start occurs when an application process already exists in memory and is switched from the background to the foreground. Applies to all platforms.

First start time

The first start is the initial launch after installation, or the first launch after application data has been cleared. Applies to all platforms.

Console metrics

Common fields

FieldDescriptionExample
Last reportedThe most recent timestamp at which the event occurred. Calculated as max("timestamp") from collected data.2025-10-30 14:38:37