Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
41 lines
2.2 KiB
Text
41 lines
2.2 KiB
Text
/** Options for the EventFilters integration */
|
|
export interface EventFiltersOptions {
|
|
allowUrls: Array<string | RegExp>;
|
|
denyUrls: Array<string | RegExp>;
|
|
ignoreErrors: Array<string | RegExp>;
|
|
ignoreTransactions: Array<string | RegExp>;
|
|
ignoreInternal: boolean;
|
|
disableErrorDefaults: boolean;
|
|
}
|
|
/**
|
|
* An integration that filters out events (errors and transactions) based on:
|
|
*
|
|
* - (Errors) A curated list of known low-value or irrelevant errors (see {@link DEFAULT_IGNORE_ERRORS})
|
|
* - (Errors) A list of error messages or urls/filenames passed in via
|
|
* - Top level Sentry.init options (`ignoreErrors`, `denyUrls`, `allowUrls`)
|
|
* - The same options passed to the integration directly via @param options
|
|
* - (Transactions/Spans) A list of root span (transaction) names passed in via
|
|
* - Top level Sentry.init option (`ignoreTransactions`)
|
|
* - The same option passed to the integration directly via @param options
|
|
*
|
|
* Events filtered by this integration will not be sent to Sentry.
|
|
*/
|
|
export declare const eventFiltersIntegration: (options?: Partial<EventFiltersOptions> | undefined) => import("../types-hoist/integration").Integration;
|
|
/**
|
|
* An integration that filters out events (errors and transactions) based on:
|
|
*
|
|
* - (Errors) A curated list of known low-value or irrelevant errors (see {@link DEFAULT_IGNORE_ERRORS})
|
|
* - (Errors) A list of error messages or urls/filenames passed in via
|
|
* - Top level Sentry.init options (`ignoreErrors`, `denyUrls`, `allowUrls`)
|
|
* - The same options passed to the integration directly via @param options
|
|
* - (Transactions/Spans) A list of root span (transaction) names passed in via
|
|
* - Top level Sentry.init option (`ignoreTransactions`)
|
|
* - The same option passed to the integration directly via @param options
|
|
*
|
|
* Events filtered by this integration will not be sent to Sentry.
|
|
*
|
|
* @deprecated this integration was renamed and will be removed in a future major version.
|
|
* Use `eventFiltersIntegration` instead.
|
|
*/
|
|
export declare const inboundFiltersIntegration: (options?: Partial<EventFiltersOptions> | undefined) => import("../types-hoist/integration").Integration;
|
|
//# sourceMappingURL=eventFilters.d.ts.map
|