@sentry/browser
Version:
Official Sentry SDK for browsers
17 lines (14 loc) • 690 B
JavaScript
import { getClient } from '@sentry/core';
/**
* Manually report the end of the page load, resulting in the SDK ending the pageload span.
* This only works if {@link BrowserTracingOptions.enableReportPageLoaded} is set to `true`.
* Otherwise, the pageload span will end itself based on the {@link BrowserTracingOptions.finalTimeout},
* {@link BrowserTracingOptions.idleTimeout} and {@link BrowserTracingOptions.childSpanTimeout}.
*
* @param client - The client to use. If not provided, the global client will be used.
*/
function reportPageLoaded(client = getClient()) {
client?.emit('endPageloadSpan');
}
export { reportPageLoaded };
//# sourceMappingURL=reportPageLoaded.js.map