Skip to main content
Flashduty RUM 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.

Query Basics

Queries support two types of terms:
TypeDescriptionExample
Single TermA single wordtest, hello
PhraseA group of words surrounded by double quotes"hello flashduty"

Boolean Operators

OperatorDescriptionExample
ANDIntersection: both terms must be in the selected view (default operator)error AND timeout
ORUnion: either term is contained in the selected view, must be wrapped in ()(error OR warning)
-Exclusion: the following term is not in the viewerror -timeout
Full-text search only supports some fields. If no results are found, please switch to field queries.
QueryDescription
helloFields that exactly match hello
hello*Fields that start with hello
*helloFields that end with hello
*hello*Fields that contain hello
"hello world"Fields that exactly match "hello world"

Escape Special Characters

When searching for field values containing special characters, you need to escape them with backslash \ or use double quotes.
The following characters are considered special: :, ", *, -, >, <, ,, (, ), [, ], \ and space
Use attribute:term syntax to search specific attributes:
QueryDescription
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 names with value "Mac OS X"
For numeric type attributes, comparison operators can be used:
QueryDescription
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 Query Examples

Search for Warning type errors that occurred in the wallet page:
error_message:Warning\:* view_url_path:/wallet/*

Advanced Search Tips

Best Practices

Use Quotes for Phrases

Ensure exact matching of multi-word phrases

Use Wildcards Wisely

Avoid overly broad search conditions

Combine Multiple Conditions

Build precise queries through AND/OR operators

Use Auto-Complete

Reduce input errors and improve search accuracy
Save frequently used search conditions to improve efficiency for repeated queries.

Next Steps