Flashduty Docs
中文EnglishRoadmapAPI官网控制台
中文EnglishRoadmapAPI官网控制台
  1. Session Explorer
  • Introduction
  • On-call
    • Getting Started
      • Quick start
      • FAQ
      • Product Comparison
    • Incidents
      • What is an Incident
      • View Incidents
      • Handle Incidents
      • Escalations and Assignments
      • Custom Fields
      • Custom Actions
      • Alert Noise Reduction
      • Past Incidents
      • Outlier Incidents
    • Configure On-call
      • Channels
      • Integrate Alerts
      • Alert Noise Reduction
      • Escalation Rules
      • Label Enrichment
      • Schedules
      • Templates
      • Service Calendars
      • Preferences
      • Alert Routing
      • Silence and Inhibition
      • Filters
      • Notifications
      • Alert Pipeline
    • Advanced Features
      • Referencing Variables
      • Dynamic Assignment
      • Insights
      • War-room
    • Integrations
      • Alerts integration
        • Standard Alert Integration
        • Email Integration
        • Nightingale/FlashCat Integration
        • Prometheus Integration
        • Grafana Integration
        • Zabbix Integration
        • Uptime Kuma Integration
        • Alibaba Cloud ARMS Integration
        • Alibaba Cloud Monitor CM Event Integration
        • Alibaba Cloud Monitor CM Metrics Integration
        • Alibaba Cloud SLS Integration
        • AWS CloudWatch Integration
        • Azure Monitor Integration
        • Baidu Cloud BCM Integration
        • Huawei Cloud CES Integration
        • Influxdata Integration
        • Open Falcon Integration
        • PagerDuty Integration
        • Tencent BlueKing Integration
        • Tencent Cloud CLS Integration
        • Tencent Cloud Monitor CM Integration
        • Tencent Cloud EventBridge
        • OceanBase Integration
        • Graylog Integration
        • Skywalking Integration
        • Sentry Integration
        • Jiankongbao Integration
        • AWS EventBridge Integration
        • Dynatrace Integration
        • Huawei Cloud LTS Integration
        • GCP Integration
        • Splunk Alert Events Integration
        • AppDynamics Alert Integration
        • SolarWinds Alert Events Integration
        • Volcengine CM Alert Events Integration
        • Volcengine CM Event Center Integration
        • Volcengine TLS Integration
        • OpManager Integration
        • Meraki Integration
        • Keep Integration
        • ElastAlert2 Alert Integration
        • StateCloud Alert Events
        • Guance Alert Events
        • Zilliz Alert Events
        • Huawei Cloud APM Alerts
        • zstack integration
        • Monit Alert Integration
        • RUM Alert Integration
      • Change integration
        • Standard Change Event
        • Jira Issue Events
      • IM integration
        • Feishu (Lark) Integration Guide
        • Dingtalk Integration
        • WeCom Integration
        • Slack Integration
        • Microsoft Teams Integration
      • Single Sign-On
        • Authing Integration
        • Keycloak Guide
        • OpenLDAP Guide
      • Webhooks
        • Alert webhook
        • Incident webhook
        • Costom action
        • ServiceNow Sync
        • Jira Sync
      • Other
        • Link Integration
  • RUM
    • Getting Started
      • Introduction
      • Quick start
      • FAQ
    • Applications
      • Applications
      • SDK Integration
      • Advanced Configuration
      • Analysis Dashboard
    • Performance Monitoring
      • Overview
      • Metrics
      • Performance Analysis
      • Performance Optimize
    • Error Tracking
      • Overview
      • Error Reporting
      • Issues
      • Source Mapping
      • Error Grouping
      • Issue States
      • Issue Alerting
    • Session Explorer
      • Overview
      • Data Query
    • Session Replay
      • View Session Replay
      • Overview
      • SDK Configuration
      • Privacy Protection
    • Best Practice
      • Distributed Tracing
    • Others
      • Terminology
      • Data Collection
      • Data Security
  • Platform
    • Teams and Members
    • Permissions
    • Single Sign-On
  • Terms
    • Terms of Service
    • User Agreement/Privary Policy
    • SLA
    • Data Security
  1. Session Explorer

Data Query

Overview#

Flashduty RUM Session Explorer provides powerful search capabilities, allowing you to quickly locate and analyze RUM data through flexible query syntax. Queries consist of terms and operators, supporting complex search condition combinations to help you accurately find the information you need from massive data.
The query supports two types of terms:
1.
Single term: A single word, such as test or hello
2.
Phrase: A group of words surrounded by double quotes, such as "hello flashduty"
You can use the following boolean operators to combine multiple terms to build complex queries:
OperatorDescriptionExample
ANDIntersection: both terms must be in the selected view (default)error AND timeout
ORUnion: either term is contained in the selected view, must use ()(error OR warning)
-Exclusion: the following term is not in the viewerror -timeout

Full-Text Search#

💡
Full-text search is only supported for some fields. If no results are found, please switch to field queries.
You can quickly query data through full-text search:
Query StatementDescription
helloExact match for fields containing hello
hello*Match fields starting with hello
*helloMatch fields ending with hello
*hello*Match fields containing hello
"hello world"Exact match for fields containing "hello world"

Escaping Special Characters and Spaces#

When searching for field values containing special characters, you need to use backslash \ escaping or double quotes. The following characters are considered special: :, ", *, -, >, <, ,, (, ), [, ], \ and space.

Attribute Search#

You can use attribute:term to search for specific attributes:
Query StatementDescription
browser_name:ChromeSearch for browsers with value Chrome
view_name:*/detailSearch for view names ending with /detail
-resource_status_code:0Search for resources with status code not 0
os_name:"Mac OS X"Search for OS name with value "Mac OS X"

Numeric Search#

For numeric type attributes, we can use comparison operators > >= < <= for searching:
Query StatementDescription
session_error_count:>5Search for sessions with error count greater than 5
view_time_spent:>=1.00minSearch for views with time spent greater than 1min
session_view_count:[2 TO 8]Search for sessions with view count between 2 and 8

Complex Search#

For complex situations, we can combine any conditions for searching.

Error Analysis Search#

error_message:Warning\:* view_url_path:/wallet/*
Search for Warning type errors occurring on wallet pages.

Performance Analysis Search#

view_loading_time:>=5s view_url_path:/incident/detail/*
Search for views with loading time exceeding 5 seconds and starting with /incident/detail/.

Failed Request Analysis#

-resource_status_code:200 resource_type:(fetch OR xhr)
Search for resources with request type fetch or xhr and status code not 200.

Page Behavior Analysis#

view_url_path:/incident (view_action_count:>=2 OR view_error_count:>=3)
Search for views with URL /incident and action count greater than 2 or error count greater than 3.

Advanced Search Tips#

1. Time Range Search#

Combine time ranges for precise searching:
view_loading_time:>2s client_time:>1758253826081

2. User Behavior Search#

action_type:click view_url_path:/checkout/*
Search for user click behaviors on checkout pages.

3. Device Type Search#

device_type:mobile view_loading_time:>3s
Search for views on mobile devices with loading time exceeding 3 seconds.

4. Geographic Location Search#

geo_country:China session_error_count:>0
Search for sessions with errors in China.

Best Practices#

1.
Use quotes for phrases: Ensure exact matching of multi-word phrases
2.
Use wildcards reasonably: Avoid overly broad search conditions
3.
Combine multiple conditions: Build precise queries through AND/OR operators
4.
Save common searches: Improve efficiency of repeated queries
5.
Utilize auto-completion: Reduce input errors and improve search accuracy

Next Steps#

RUM Session Explorer Overview
Distributed Tracing Best Practices

添加官方技术支持微信

在这里,获得使用上的任何帮助,快速上手FlashDuty

微信扫码交流
修改于 2025-09-28 02:33:56
上一页
Overview
下一页
View Session Replay
Built with