Filter Traces
Construct a Query in the filter bar
Click on the filter bar to type, select, or use Copilot to search for a filter
Construct a filter using the query syntax
Press
Enter
to apply the filter!

Syntax Guide
General Syntax
Format:
"dimension name" = 'value'
Enclose the dimension in double quotes (
"
) and the value in single quotes ('
).
Examples:
Equals:
"dimension_name" = 'value'
Not Equals:
"dimension_name" != 'value'
Contains:
"dimension_name" contains 'substring'
Null:
"attributes.input.value" = null
or"attributes.input.value" is null
IN:
"dimension_name" IN ('value_1', 'value_2')
AND/OR Support: Combine multiple conditions using
AND
orOR
.
Operators:
=
: Equals!=
: Not equals<
: Less than>
: Greater thanIN
: Includes
Functions:
Contains: Use
contains
to check if a string column contains a substring
Last updated
Was this helpful?