Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adust docs after renaming UserAgent integration to HttpContext #4997

Merged
merged 2 commits into from
May 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ If you've set up user identification you can find the user attributes under `dat
"Breadcrumbs",
"GlobalHandlers",
"LinkedErrors",
"UserAgent"
"HttpContext"
],
"name": "sentry.javascript.browser",
"packages": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ The following two fields are for [alert rule action UI components](/product/inte
"Breadcrumbs",
"GlobalHandlers",
"LinkedErrors",
"UserAgent"
"HttpContext"
],
"name": "sentry.javascript.browser",
"packages": [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Default Integrations
excerpt: ""
description: "Learn more about system integrations Dedupe, InboundFilters, FunctionToString, Breadcrumbs, GlobalHandlers, LinkedErrors, and UserAgent, that are enabled by default to integrate into the standard library or the interpreter itself."
description: "Learn more about system integrations Dedupe, InboundFilters, FunctionToString, Breadcrumbs, GlobalHandlers, LinkedErrors, and HttpContext, that are enabled by default to integrate into the standard library or the interpreter itself."
redirect_from:
- /platforms/javascript/integrations/default/
- /platforms/javascript/default-integrations/
Expand Down Expand Up @@ -122,11 +122,12 @@ document
});
```

### UserAgent
### HttpContext

_Import name: `Sentry.Integrations.UserAgent`_
_Import name: `Sentry.Integrations.HttpContext`_

This integration attaches user-agent information to the event, which allows us to correctly catalog and tag them with specific OS, browser, and version information.
This integration attaches HTTP request information, such as URL, user-agent, referrer and other headers to the event.
It allows us to correctly catalog and tag events with specific OS, browser, and version information.

### Dedupe

Expand Down