tencent cloud

Tencent Cloud Observability Platform

business drill-down

Download
Focus Mode
Font Size
Last updated: 2026-05-25 18:53:28
Business drill-down is a data analysis method that starts from macro-level business data, employs multi-dimensional and layered detailed analysis to pinpoint the root causes of data anomalies or driving factors behind outstanding performance, enabling precise attribution and business optimization. This article introduces the use cases and methodologies of business drill-down.

Use Cases

RUM Pro has added a business drill-down field, allowing users to tag data with multiple sets of labels, and simultaneously supports drill-down analysis on individual cases (numerator) and the number of connected devices (denominator). For example, the following usage scenarios:
To categorize device models (low-end, mid-range, high-end) into tiers, enabling separate viewing of quality data for each tier.
To categorize users (regular users and VIP users) into regular and VIP groups, aiming to determine the crash rate of VIP users.
To understand the distribution channels used by the application and determine the crash rate for a specific channel.
Note:
In the SDK configuration, users only need to mark the current device, device model tier, whether they are VIP users, and the download channel via the API. For example:
High-end devices, VIP users, Huawei AppGallery ==> setTestLabels("HighPerformanceDevice|VIP|HWAppStore")
Low-end devices, regular users, official website ==> setTestLabels("LowPerformanceDevice|Normal|Official")

Operation Steps

Step 1: Configure business drill-down in the SDK

Android SDK:
/**
* Configures business drill-down tags. To configure multiple tags, separate them with a vertical bar (|).
* A maximum of 30 tags can be configured. If more than 30 tags are specified, only the first 30 tags are used.
* Each tag cannot exceed 1024 characters in length. Tags longer than this limit cannot be added successfully.
* Example: "test_one|test_two|test_three".
* SDK version: 4.4.1+
* @param labels Business drill-down tags.
*/
public static void setTestLabels(String labels);
For specific operation steps, see Android SDK Access Guide.
iOS SDK:
/**
* To update business drill-down tags, call this method after the RumPro sdk initialization is complete (i.e., after the setup completeHandler callback). Otherwise, data loss may occur.
* SDK version: 2.7.53.3+
* @params tagArr String array (max length: 30, each string max length: 1024 bytes)
*/
+ (void)updateTestTags:(NSArray<NSString *> *)tagArr;
For specific operation steps, see iOS SDK Access Guide.

Step 2: Use business drill-down

The following content provides usage instructions for business drill-down using the crash page as an example. Other pages can refer to the following content.

Search Analysis

1. By clicking Edit Field to add the business drill-down filter option.

2. Select the desired Tag data and click Retrieve to retrieve data matching the business drill-down filter criteria.


Statistical distribution

1. By clicking Set, you can add the statistical distribution for business drill-down.

2. View the Top5 distribution of business drill-down.

3. Click View More to view the complete Business Drill-down data.



Help and Support

Was this page helpful?

Help us improve! Rate your documentation experience in 5 mins.

Feedback