File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 4
4
5
5
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
6
6
7
+ ### Important Changes
8
+
9
+ - ** feat(core): Add ` ignoreSpans ` option ([ #17078 ] ( https://github.com/getsentry/sentry-javascript/pull/17078 ) )**
10
+
11
+ This release adds a new top-level ` Sentry.init ` option, ` ignoreSpans ` , that can be used as follows:
12
+
13
+ ``` js
14
+ Sentry .init ({
15
+ ignoreSpans: [
16
+ ' partial match' , // string matching on the span name
17
+ / regex/ , // regex matching on the span name
18
+ {
19
+ name: ' span name' ,
20
+ op: / http. client/ ,
21
+ },
22
+ ],
23
+ });
24
+ ```
25
+
26
+ Spans matching the filter criteria will not be recorded. Potential child spans of filtered spans will be re-parented, if possible.
27
+
7
28
## 10.1.0
8
29
9
30
- feat(nuxt): Align build-time options to follow bundler plugins structure ([ #17255 ] ( https://github.com/getsentry/sentry-javascript/pull/17255 ) )
You can’t perform that action at this time.
0 commit comments