Skip to content
12 changes: 11 additions & 1 deletion src/docs/product/sentry-basics/search/searchable-properties.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ You can search by event properties in the following [sentry.io](https://sentry.i
- Discover - in the query builder
- Dashboards - within the widget builder, depending on dataset selection
- Performance - only in transaction summaries
- Replay - on the **Replay** page
- Issues - as indicated in the table below
- Alerts - when creating a metric alert

Expand All @@ -38,7 +39,7 @@ When searching on event properties within the **Issues** page, the search will r

[Session Replay](/product/session-replay/) provides a video-like reproduction of user interactions on a site or web app. All user interactions, including page visits, mouse movements, clicks, and scrolls, are captured, helping developers connect the dots between a known issue and how a user experienced it in the UI.

You can search by session replay properties (indicated with an R in the properties table below) on the **Replays** page.
You can search by session replay properties (indicated with an R in the properties table below) on the **Replay** page.

### Release Properties

Expand Down Expand Up @@ -191,6 +192,15 @@ Release properties overlap with event and issue search properties, so they don't
| release.stage | The usage your release is seeing relative to other releases. Values can be `adopted`, `low`, or `replaced`. [Learn more](/product/releases/health/#adoption-stages). | x | x | | string |
| release.version | A shorter version of the name; name without the package or short version of the hash. [Learn more](/product/releases/usage/sorting-filtering/). | x | x | | string |
| replayType | The reason a replay was triggered. For example, `session` when `replaysSessionSampleRate` takes effect, or `error` when `replaysOnErrorSampleRate` is sampled instead of `session`. | | | x | string |
| click.alt | The `alt` of an element that was clicked. For example, `"a good dog"` would match the element `<img src="/lassie.jpeg" alt="a good dog" />` | | | x | string |
| click.class | The `class` of an element that was clicked. No leading `.` is necessary. For example, `btn-primary` would match the element `<a class="btn btn-primary">Save</a>` | | | x | string |
| click.id | The `id` of an element that was clicked. No leading `#` is necessary. For example, `reset-password` would match the element `<a id="reset-password">Reset</a>` | | | x | string |
| click.label | The `aria-label` of an element that was clicked. For example, `Expand` would match the element `<button aria-label="Expand"><img src="/icons/expand.png"/></button>` | | | x | string |
| click.role | The `role` of an element that was clicked. For example, `button` would match both `<button>Save</button>` and `<a role="button">Submit</a>` | | | x | string |
| click.selector | An element identified using a subset of CSS selector syntax. For example, `span#section-1` or `span.active` or `span[role=button]` or `span#section-1.active[role=button]` would all match the element `<span id="section-1" class="active" role="button"/>`. Note that, CSS combinators, pseudo selectors, and attr selectors other than `=` are not supported. | | | x | string |
| click.tag | The tag name of an element that was clicked. For example, `input` would match `<input name="username" />` | | | x | string |
| click.textContent | The immediate `textContent` of an element that was clicked. For example, `Save` would match `<button>Save</button>` but wouldn't match `<button><h1>Save</h1></button>` | | | x | string |
| click.title | The `title` of an element that was clicked. For example, `Save this comment` would match the element `<a title="Save this comment" class="btn btn-primary">Save</a>` | | | x | string |
| sdk.name | Name of the Sentry SDK that sent the event. | x | x | x | string |
| sdk.version | Version of the Sentry SDK that sent the event. | x | x | x | string |
| spans.browser | Cumulative browser time for a transaction, based on the span operations. | x | | | duration |
Expand Down