Skip to main content
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 or POST /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:
This works for any tag value regardless of whether it is registered as a project tag.

To make tags appear in the filter dropdown

Register the tag via the UI

  1. Navigate to your project settings
  2. Go to the Tags section
  3. Click “Add Tag”
  4. Enter the tag name and optional description/color
  5. Save the tag

Register the tag via the API (for bulk operations)

Send a POST /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. Use GET /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 description and color.