rollbar
Version:
Effortlessly track and debug errors in your JavaScript applications with Rollbar. This package includes advanced error tracking features and an intuitive interface to help you identify and fix issues more quickly.
22 lines (18 loc) • 540 B
JavaScript
import scrub from '../scrub.js';
import Telemeter from '../telemetry.js';
import Tracing from '../tracing/tracing.js';
import truncation from '../truncation.js';
import Rollbar from './core.js';
import Replay from './replay/replay.js';
import Instrumenter from './telemetry.js';
import wrapGlobals from './wrapGlobals.js';
Rollbar.setComponents({
telemeter: Telemeter,
instrumenter: Instrumenter,
wrapGlobals: wrapGlobals,
scrub: scrub,
truncation: truncation,
tracing: Tracing,
replay: Replay,
});
export default Rollbar;