Filter Traces
Last updated
Was this helpful?
Last updated
Was this helpful?
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!
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
or OR
.
=
: Equals
!=
: Not equals
<
: Less than
>
: Greater than
IN
: Includes
Contains: Use contains
to check if a string column contains a substring