Skip to content

Commit

Permalink
docs(replays): add rage/dead selector as searchable property (#8043)
Browse files Browse the repository at this point in the history
* docs(replays): add rage/dead selector as searchable property

* style(lint): Auto commit lint changes

* varying examples

* typo

* add links to dead and rage click definitions

* style(lint): Auto commit lint changes

---------

Co-authored-by: getsantry[bot] <66042841+getsantry[bot]@users.noreply.github.com>
  • Loading branch information
michellewzhang and getsantry[bot] authored Sep 28, 2023
1 parent 9709ffe commit 1e1b06e
Showing 1 changed file with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ The `role` of an element that was clicked. For example, `button` would match bot

### `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.
An element identified using a subset of CSS selector syntax. For example, `#section-1` or `span.active` or `span[role=button]` or `.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.

- **Type:** string

Expand Down Expand Up @@ -92,7 +92,7 @@ The `title` of an element that was clicked. For example, `Save this comment` wou

### `count_dead_clicks`

The number of dead clicks within a replay.
The number of [dead clicks](https://docs.sentry.io/product/session-replay/replay-page-and-filters/#:~:text=Dead%20Clicks%3A%20User%20clicks%20on%20a%20and%20button%20tags%20that%20do%20not%20result%20in%20any%20page%20activity%20after%207%20seconds%20(i.e.%20no%20HTML%20was%20added%2C%20removed%2C%20or%20updated%3B%20no%20visual%20changes%20were%20observed%20in%20the%20page) within a replay.

- **Type:** number

Expand All @@ -104,7 +104,7 @@ The number of errors within a replay.

### `count_rage_clicks`

The number of rage clicks within a replay.
The number of [rage clicks](<https://docs.sentry.io/product/session-replay/replay-page-and-filters/#:~:text=Rage%20Clicks%3A%20Five%20or%20more%20clicks%20on%20a%20dead%20element%20(it%20exhibits%20no%20page%20activity%20after%207%20seconds.)%20Rage%20clicks%20are%20a%20subset%20of%20dead%20clicks>) within a replay.

- **Type:** number

Expand All @@ -120,6 +120,12 @@ The number of URLs that the user visited during a replay recording.

- **Type:** number

### `dead.selector`

Similar to the `click.selector` search property, but only queries on [dead clicks](https://docs.sentry.io/product/session-replay/replay-page-and-filters/#:~:text=Dead%20Clicks%3A%20User%20clicks%20on%20a%20and%20button%20tags%20that%20do%20not%20result%20in%20any%20page%20activity%20after%207%20seconds%20(i.e.%20no%20HTML%20was%20added%2C%20removed%2C%20or%20updated%3B%20no%20visual%20changes%20were%20observed%20in%20the%20page). An element identified using a subset of CSS selector syntax. For example, `#section-1` or `span.active` or `span[role=button]` or `.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.

- **Type:** string

### `device.brand`

Brand of the device
Expand Down Expand Up @@ -198,6 +204,12 @@ The id of the project.

- **Type:** string

### `rage.selector`

Similar to the `click.selector` search property, but only queries on [rage clicks](<https://docs.sentry.io/product/session-replay/replay-page-and-filters/#:~:text=Rage%20Clicks%3A%20Five%20or%20more%20clicks%20on%20a%20dead%20element%20(it%20exhibits%20no%20page%20activity%20after%207%20seconds.)%20Rage%20clicks%20are%20a%20subset%20of%20dead%20clicks>). An element identified using a subset of CSS selector syntax. For example, `#section-1` or `span.active` or `span[role=button]` or `.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.

- **Type:** string

### `release`

A release is a version of your code deployed to an environment. You can create a token with an exact match of the version of a release, or `release:latest` to pick the most recent release.
Expand Down

1 comment on commit 1e1b06e

@vercel
Copy link

@vercel vercel bot commented on 1e1b06e Sep 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

sentry-docs – ./

docs.sentry.io
sentry-docs.sentry.dev
sentry-docs-git-master.sentry.dev

Please sign in to comment.