@sentry/junior-sentry 0.46.0 → 0.48.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/junior-sentry",
3
- "version": "0.46.0",
3
+ "version": "0.48.0",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -1,45 +1,34 @@
1
1
  # Sentry Deep Link Patterns
2
2
 
3
- Generate these URLs to link users directly to Sentry web UI views. Replace `{org}`, `{email}`, `{issue_id}`, etc. with actual values.
3
+ `{org}` = org slug, `{project_id}` = numeric project ID. All HTTPS.
4
4
 
5
5
  ## Issues
6
6
 
7
- ### Issues by user email
8
-
9
7
  ```
10
8
  https://{org}.sentry.io/issues/?query=user.email:{email}
11
- ```
12
-
13
- ### Single issue
14
-
15
- ```
16
9
  https://{org}.sentry.io/issues/{issue_id}/
17
10
  ```
18
11
 
19
12
  ## Replays
20
13
 
21
- ### Replays by user email
22
-
23
14
  ```
24
15
  https://{org}.sentry.io/replays/?query=user.email:{email}
16
+ https://{org}.sentry.io/replays/{replay_id}/
25
17
  ```
26
18
 
27
- ### Single replay
19
+ ## Explore
20
+
21
+ The Explore path is `explore/traces/`. There is NO `explore/spans/` route.
28
22
 
29
23
  ```
30
- https://{org}.sentry.io/replays/{replay_id}/
24
+ https://{org}.sentry.io/explore/traces/?mode=samples&project={project_id}&statsPeriod={stats_period}
25
+ https://{org}.sentry.io/explore/logs/?project={project_id}&statsPeriod={stats_period}
31
26
  ```
32
27
 
33
28
  ## Performance
34
29
 
35
- ### Trace
36
-
37
30
  ```
38
31
  https://{org}.sentry.io/performance/trace/{trace_id}/
39
32
  ```
40
33
 
41
- ## Notes
42
-
43
- - `{org}` is the Sentry organization slug (e.g., `getsentry`).
44
- - `{email}` should be URL-encoded if it contains special characters.
45
- - All URLs use HTTPS.
34
+ Use `performance/trace/` for single trace-by-ID links. Use `explore/traces/` for search and filtered views.