@sentry/core
Version: 
Base implementation for all Sentry JavaScript SDKs
28 lines (20 loc) • 849 B
JavaScript
import { defineIntegration } from '../integration.js';
import { applyAggregateErrorsToEvent } from '../utils-hoist/aggregate-errors.js';
import { exceptionFromError } from '../utils-hoist/eventbuilder.js';
const DEFAULT_KEY = 'cause';
const DEFAULT_LIMIT = 5;
const INTEGRATION_NAME = 'LinkedErrors';
const _linkedErrorsIntegration = ((options = {}) => {
  const limit = options.limit || DEFAULT_LIMIT;
  const key = options.key || DEFAULT_KEY;
  return {
    name: INTEGRATION_NAME,
    preprocessEvent(event, hint, client) {
      const options = client.getOptions();
      applyAggregateErrorsToEvent(exceptionFromError, options.stackParser, key, limit, event, hint);
    },
  };
}) ;
const linkedErrorsIntegration = defineIntegration(_linkedErrorsIntegration);
export { linkedErrorsIntegration };
//# sourceMappingURL=linkederrors.js.map