@dash0/sdk-web
Version:
Dash0's Web SDK to collect telemetry from end-users' web browsers
12 lines (10 loc) • 471 B
text/typescript
import { startOnErrorInstrumentation } from "./unhandled-error";
import { startUnhandledRejectionInstrumentation } from "./unhandled-promise-rejection";
import { startEventHandlerInstrumentation } from "./event-handlers";
import { startTimerInstrumentation } from "./timers";
export function startErrorInstrumentation() {
startOnErrorInstrumentation();
startUnhandledRejectionInstrumentation();
startEventHandlerInstrumentation();
startTimerInstrumentation();
}