Applies to:
- Plan -
- Deployment -
Summary
Issue: Tags logged via the SDK do not appear in the tag filter dropdown in the experiments table, even though the tag values exist in logged span data. Cause: The filter dropdown shows explicitly registered project tags and tags inferred from recent logged data. Tags that are very new or appear rarely in logged data may not yet appear in the dropdown. Resolution: For tags that don’t appear yet, register them using the UI orPOST /v1/project_tag, or filter using the SQL filter as an immediate workaround.
Resolution steps
To filter by an unregistered tag immediately
Use the SQL filter
In the experiments table, open the SQL filter and use this syntax:To make tags appear in the filter dropdown
Register the tag via the UI
- Navigate to your project settings
- Go to the Tags section
- Click “Add Tag”
- Enter the tag name and optional description/color
- Save the tag
Register the tag via the API (for bulk operations)
Send aPOST /v1/project_tag request for each tag you want to appear in the dropdown:
Repeat across projects if needed
For multiple projects, use the UI for each project or script the API request above. UseGET /v1/project_tag to list existing tags before creating duplicates.
Notes
- Tags that appear in recent logged data are surfaced automatically in the dropdown alongside configured project tags. Very new or rarely-used tags may have a delay before appearing.
- Registering a project tag lets you set a color, description, and display order. It does not change or backfill existing logged data.
- See the Project Tags API reference for full field options including
descriptionandcolor.