We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2bbd01 commit 644a3abCopy full SHA for 644a3ab
packages/browser-utils/src/metrics/browserMetrics.ts
@@ -302,11 +302,11 @@ interface AddPerformanceEntriesOptions {
302
recordClsOnPageloadSpan: boolean;
303
304
/**
305
- * Resource spans matching strings in the array will not be emitted.
+ * Resource spans with `op`s matching strings in the array will not be emitted.
306
*
307
* Default: []
308
*/
309
- ignoreResourceSpans: Array<string>;
+ ignoreResourceSpans: Array<'resouce.script' | 'resource.css' | 'resource.img' | 'resource.other' | string >;
310
}
311
312
/** Add performance related spans to a transaction */
0 commit comments