Skip to content

Commit 2e06005

Browse files
authored
chore(large-http): Update docs for GA (#7044)
Removes EA notes around large http detector and adds the threshold to the detection criteria
1 parent 9c96348 commit 2e06005

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

src/docs/product/accounts/early-adopter.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,4 @@ Limitations:
2121
- [Issue Reprocessing](/product/issues/reprocessing/)
2222
- [Span Summary](/product/performance/transaction-summary/#span-summary)
2323
- Organization Domains - Instead of being a path segment, organization slugs are used as a subdomain for [sentry.io](https://sentry.io). For example, `https://acme.sentry.io/issues/` replaces `https://sentry.io/organizations/acme/issues/`. API URLs are unchanged.
24-
- [Large HTTP Payload](/product/issues/issue-details/performance-issues/large-http-payload/)
2524
- [Team-level Roles](https://sentry-docs-git-update-org-and-user-managment-page.sentry.dev/product/accounts/membership/?original_referrer=https%3A%2F%2Fgithub.com%2Fgetsentry%2Fsentry-docs%2Fpull%2F6934#team-level-roles)

src/docs/product/issues/issue-details/performance-issues/index.mdx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ The following is a list of available performance issues:
4848
<td>
4949
<ul>
5050
<li>
51-
<a href="./consecutive-http/">Consecutive HTTP*</a>
51+
<a href="./consecutive-http/">Consecutive HTTP</a>
5252
</li>
5353
<li>
54-
<a href="./large-http-payload/">Large HTTP Payload*</a>
54+
<a href="./large-http-payload/">Large HTTP Payload</a>
5555
</li>
5656
<li>
5757
<a href="./large-render-blocking-asset/">
@@ -127,8 +127,6 @@ The following is a list of available performance issues:
127127
</tr>
128128
</table>
129129

130-
<Note>* Currently only available to Early Adopters.</Note>
131-
132130
## Performance Issue Limitations
133131

134132
Performance issues currently have the following limitations:

src/docs/product/issues/issue-details/performance-issues/large-http-payload/index.mdx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,18 @@ redirect_from:
66
description: "Learn more about Large HTTP Payload issues, how to diagnose and fix them."
77
---
88

9-
<Include name="early-adopter-note.mdx" />
10-
119
Large HTTP payload issues are created when an http span has an encoded body size that exceeds a threshold.
1210

1311
## Detection Criteria
1412

1513
The detector for this performance issue looks for a single http span that meets the following criteria:
1614

17-
- The HTTP method must be a GET, POST, DELETE, PUT, PATCH
1815
- The HTTP url must not begin with \_next/static/ or \_next/data/
19-
- The HTTP url must not end with the extensions .js, .css, .svg, .png, .mp3, .jpg, .jpeg
16+
- The HTTP url must not end with an extension (e.g. .js, .css, .png, .jpg, .jpeg, .mp3), unless the extension is .json
17+
- The HTTP span must have an `http.response_content_length` (added by the `@sentry/browser` SDK, version `7.53.0`) that exceeds 500kb
18+
- The HTTP span duration must exceed 100ms
2019

21-
Once an HTTP span that meets this criteria is found, the encoded body size is checked against a threshold. If Sentry isn't detecting a Large HTTP Payload issue where you expect one, it's probably because the transaction didn't meet one of the above criteria.
20+
If Sentry isn't detecting a Large HTTP Payload issue where you expect one, it's probably because the transaction didn't meet one of the above criteria.
2221

2322
## Span Evidence
2423

0 commit comments

Comments
 (0)