Skip to content

Commit 33d7533

Browse files
committed
* 'master' of https://github.com/getsentry/sentry-docs: (22 commits) Fix incorrectly placed comma (#14592) fix(devservices): Typo in devservices docs (#14636) ref(ourlogs): Add log size limit (#14635) Document undocumented php prefix option (#14634) getsentry/relay@7958273 Unreal Engine: Update plugin docs (#14624) feat: Update min js sdk version for logging and update console logging snippet (#14614) feat: [Unreal] Add transaction and span set_data documentation (#14599) feat(js): Add `ignoreSpans` documentation to Options page (#14572) fix(js/browser): Amend user IP + `sendDefaultPii` change to v10 migration guide (#14609) fix: Fix broken AI banner due to invalid syntax (#14627) feat(partners)add-enablement-docs (#14095) Fix image path issue & add test coverage for new lightbox (#14616) feat(seer): update GHE setup to work with seer (#14617) fix(replay): Document searchable properties `screen` and alias `screens` (#14603) Update image handling (#14564) Update using-hooks.mdx (#14605) Godot: Document `disabled-in-editor-play` option (#14438) fix(Docs) redirect and deprecate old metrics pages (#14602) fix(relay): Update projects.mdx (#14606) ...
2 parents 7b1ffa0 + 0821cb0 commit 33d7533

File tree

55 files changed

+1753
-1380
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+1753
-1380
lines changed

app/globals.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,6 @@ body {
177177

178178
.onboarding-step .step-heading::before,
179179
.onboarding-step h2::before {
180-
content: "Step " counter(onboarding-step) ": ";
180+
content: 'Step ' counter(onboarding-step) ': ';
181181
font-weight: inherit;
182182
}

develop-docs/development-infrastructure/devservices.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def example () -> None
111111

112112
3. Bring a process to the foreground for debugging
113113
``` sh
114-
devservices foreground taskbroker
114+
devservices foreground taskworker
115115
```
116116

117117

develop-docs/frontend/using-hooks.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ callback.
3535

3636
### Using context
3737

38-
The `useContext` hook provides a simpler implemtation option to share state and
38+
The `useContext` hook provides a simpler implementation option to share state and
3939
behavior compared to our previous uses of Reflux. When you need to create new
4040
sources of shared state, consider using context and `useContext` instead of Reflux.
4141
Additionally the [wormhole state management

develop-docs/sdk/data-model/envelopes.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ These limits are subject to future change and defined currently as:
345345
- *100MB* for a full envelope after decompression
346346
- *100MB* for all attachments combined
347347
- *100MB* for each attachment item
348-
- *1MB* for event (errors and transactions), span, and metric (statsd, buckets, meta) items.
348+
- *1MB* for event (errors and transactions), span, log, and metric (statsd, buckets, meta) items.
349349
- *100KB* for monitor check-in items
350350
- *50MB* for profile items
351351
- *10MB* for compressed replay item

docs/concepts/data-management/event-grouping/fingerprint-rules.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: "Learn about fingerprint rules, matchers for fingerprinting, how to
88

99
Fingerprint rules (previously known as _server-side fingerprinting_) are configured with a config similar to [stack trace rules](../stack-trace-rules/), but the syntax is slightly different. The matchers are the same, but instead of flipping flags, a fingerprint is assigned and it overrides the default grouping entirely. Assigning a fingerprint can also refine the default grouping rather than overriding it, if the fingerprint includes the value `{{ default }}`.
1010

11-
These rules can be configured on a per-project basis in **[Project] > Settings > Issue Grouping > Fingerprint Rules**. This setting has input fields where you can write custom fingerprinting rules. To update a rule:
11+
These rules can be configured on a per-project basis in **Project Settings > Issue Grouping > Fingerprint Rules**. This setting has input fields where you can write custom fingerprinting rules. To update a rule:
1212

1313
1. Identify the match logic for grouping issues together.
1414
1. Set the match logic and the fingerprint for it.

docs/concepts/data-management/event-grouping/stack-trace-rules.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: "Learn how to use stack trace rules to group incoming events based
88

99
Stack trace rules improve issue tracking by ensuring accurate grouping and better classification of stack frames as in-app or system. This helps focus on relevant code, reduces noise, and minimizes false positives. By tailoring rules to your project, you can streamline debugging and maintain consistency across teams or multiple applications.
1010

11-
When you set stack trace rules (previously known as _grouping enhancements_) for grouping in Sentry, they influence the data that's fed into the grouping algorithm. These rules can be configured on a per-project basis by going to your project settings and then clicking on "Issue Grouping".
11+
When you set stack trace rules (previously known as _grouping enhancements_) for grouping in Sentry, they influence the data that's fed into the grouping algorithm. These rules can be configured on a per-project basis in **Project Settings > Issue Grouping > Stack Trace Rules**.
1212

1313
Here are a few things to note about stack trace rules:
1414

docs/concepts/search/searchable-properties/session-replay.mdx

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Replay activity is calculated based on the number of errors, the number of ui ev
2222

2323
### `browser.name`
2424

25-
Name of the users' web browser. For example, `Chrome`, `Firefox`, or `Safari`
25+
Name of the users' web browser. For example, `Chrome`, `Firefox`, or `Safari`.
2626

2727
- **Type:** string
2828

@@ -34,13 +34,13 @@ The version string of the browser.
3434

3535
### `click.alt`
3636

37-
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" />`
37+
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" />`.
3838

3939
- **Type:** string
4040

4141
### `click.class`
4242

43-
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>`
43+
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>`.
4444

4545
- **Type:** string
4646

@@ -54,19 +54,19 @@ Note: This property requires that your project have [React component name captur
5454

5555
### `click.id`
5656

57-
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>`
57+
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>`.
5858

5959
- **Type:** string
6060

6161
### `click.label`
6262

63-
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>`
63+
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>`.
6464

6565
- **Type:** string
6666

6767
### `click.role`
6868

69-
The `role` of an element that was clicked. For example, `button` would match both `<button>Save</button>` and `<a role="button">Submit</a>`
69+
The `role` of an element that was clicked. For example, `button` would match both `<button>Save</button>` and `<a role="button">Submit</a>`.
7070

7171
- **Type:** string
7272

@@ -78,25 +78,25 @@ An element identified using a subset of CSS selector syntax. For example, `#sect
7878

7979
### `click.tag`
8080

81-
The tag name of an element that was clicked. For example, `input` would match `<input name="username" />`
81+
The tag name of an element that was clicked. For example, `input` would match `<input name="username" />`.
8282

8383
- **Type:** string
8484

8585
### `click.testid`
8686

87-
The `data-testid` or `data-test-id` of an element that was clicked. For example, `user-name` would match the element `<a data-testid="user-name">User Name</a>`
87+
The `data-testid` or `data-test-id` of an element that was clicked. For example, `user-name` would match the element `<a data-testid="user-name">User Name</a>`.
8888

8989
- **Type:** string
9090

9191
### `click.textContent`
9292

93-
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>`
93+
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>`.
9494

9595
- **Type:** string
9696

9797
### `click.title`
9898

99-
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>`
99+
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>`.
100100

101101
- **Type:** string
102102

@@ -144,7 +144,7 @@ Similar to the `click.selector` search property, but only queries on [dead click
144144

145145
### `device.brand`
146146

147-
Brand of the device
147+
Brand of the device.
148148

149149
- **Type:** string
150150

@@ -162,7 +162,7 @@ Internal hardware revision to identify the device exactly.
162162

163163
### `device.name`
164164

165-
Details of the device
165+
Details of the device.
166166

167167
- **Type:** string
168168

@@ -204,7 +204,7 @@ Severity of the event (such as: fatal, error, warning). Always set to info for t
204204

205205
### `os.name`
206206

207-
The name of the operating system. For example, `Windows`, `Mac OS X`, or `Linux`
207+
The name of the operating system. For example, `Windows`, `Mac OS X`, or `Linux`.
208208

209209
- **Type:** string
210210

@@ -244,6 +244,11 @@ The reason a replay was triggered. For example, `session` when `replaysSessionSa
244244

245245
- **Type:** string
246246

247+
### `screen`
248+
249+
A specific Screen or View that the user visited during the replay. You can also search for multiple Screens at once using `screens` and passing in an array of strings.
250+
Alias: `url`
251+
247252
### `sdk.name`
248253

249254
Name of the Sentry SDK that sent the event.
@@ -272,6 +277,7 @@ A trace represents the record of the entire operation you want to measure or tra
272277
### `url`
273278

274279
A specific URL that the user visited during the replay. You can also search for multiple URLs at once using `urls` and passing in an array of strings.
280+
Alias: `screen`
275281

276282
- **Type:** string
277283

@@ -301,7 +307,7 @@ Full name of the country of the user's geolocation.
301307

302308
### `user.geo.subdivision`
303309

304-
Full name of the subdivision of the user's geolocation. (For example, state, province, etc.)
310+
Full name of the subdivision of the user's geolocation. (For example, state, province, etc.).
305311

306312
- **Type:** string
307313

docs/organization/integrations/source-code-mgmt/github/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,11 +138,11 @@ Occasionally, Sentry will request additional permissions to your GitHub account
138138
</tr>
139139
<tr>
140140
<th>Pull Requests </th>
141-
<td>Read-only </td>
141+
<td>Read & Write </td>
142142
</tr>
143143
<tr>
144144
<th>Repository Contents </th>
145-
<td>Read-only </td>
145+
<td>Read & Write </td>
146146
</tr>
147147
<tr>
148148
<th>Single File </th>

docs/platforms/android/metrics/index.mdx

Lines changed: 0 additions & 179 deletions
This file was deleted.

0 commit comments

Comments
 (0)