You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- Use this checklist to make sure your PR is ready for merge. You may
delete any sections you don't need. -->
## DESCRIBE YOUR PR
Updated the Ember quick start guide to follow our Quick Start guide
template.
Closes: #14801
## IS YOUR CHANGE URGENT?
Help us prioritize incoming PRs by letting us know when the change needs
to go live.
- [ ] Urgent deadline (GA date, etc.): <!-- ENTER DATE HERE -->
- [ ] Other deadline: <!-- ENTER DATE HERE -->
- [x] None: Not urgent, can wait up to 1 week+
## SLA
- Teamwork makes the dream work, so please add a reviewer to your PRs.
- Please give the docs team up to 1 week to review your PR unless you've
added an urgent due date to it.
Thanks in advance for your help!
## PRE-MERGE CHECKLIST
*Make sure you've checked the following before merging your changes:*
- [ ] Checked Vercel preview for correctness, including links
- [ ] PR was reviewed and approved by any necessary SMEs (subject matter
experts)
- [ ] PR was reviewed and approved by a member of the [Sentry docs
team](https://github.com/orgs/getsentry/teams/docs)
## EXTRA RESOURCES
- [Sentry Docs contributor guide](https://docs.sentry.io/contributing/)
In addition to capturing errors, you can monitor interactions between multiple services or applications by [enabling tracing](/concepts/key-terms/tracing/). You can also get to the root of an error or performance issue faster, by watching a video-like reproduction of a user session with [session replay](/product/explore/session-replay/web/getting-started/).
22
-
23
-
Select which Sentry features you'd like to install in addition to Error Monitoring to get the corresponding installation and configuration instructions below.
24
-
25
-
## Install
14
+
Choose the features you want to configure, and this guide will show you how:
26
15
27
16
<OnboardingOptionButtons
28
17
options={[
@@ -34,17 +23,21 @@ Select which Sentry features you'd like to install in addition to Error Monitori
34
23
]}
35
24
/>
36
25
37
-
Sentry captures data by using an SDK within your application's runtime.
Configuration should happen as early as possible in your application's lifecycle.
36
+
### Initialize the SDK
44
37
45
-
This snippet includes automatic instrumentation to monitor the performance of your application, which registers and configures the Tracing integration, including custom [Ember instrumentation](./configuration/ember-options/).
38
+
Configuration should happen as early as possible in your application's lifecycle. Add the following to your `app/app.js` file:
Let's test your setup and confirm that Sentry is working correctly and sending data to your Sentry project.
109
+
110
+
### Issues
111
+
112
+
To verify that Sentry captures errors and creates issues in your Sentry project, add the following test button to one of your templates, which will trigger an error that Sentry will capture when you click it:
Open the page in a browser and click the button to trigger a frontend error and a trace.
106
163
107
-
This SDK uses Ember configuration conventions to manage its automatic instrumentation and other Sentry options. This additional configuration can be found under <PlatformLinkto="/configuration/ember-options/">Ember options</PlatformLink>.
At this point, you should have integrated Sentry into your Ember application and should already be sending data to your Sentry project.
118
175
119
-
<Alert>
176
+
Now's a good time to customize your setup and look into more advanced topics.
177
+
Our next recommended steps for you are:
120
178
121
-
Learn more about manually capturing an error or message in our <PlatformLinkto="/usage/">Usage documentation</PlatformLink>.
179
+
- Learn how to [manually capture errors](/platforms/javascript/guides/ember/usage/)
180
+
- Continue to [customize your configuration](/platforms/javascript/guides/ember/configuration/)
181
+
- Get familiar with [Sentry's product features](/product/) like tracing, insights, and alerts
122
182
123
-
</Alert>
183
+
<Expandablepermalink={false}title="Are you having problems setting up the SDK?">
124
184
125
-
To view and resolve the recorded error, log into [sentry.io](https://sentry.io) and select your project. Clicking on the error's title will open a page where you can see detailed information and mark it as resolved.
185
+
- Find various topics in [Troubleshooting](/platforms/javascript/guides/ember/troubleshooting/)
0 commit comments