Raygun
Unleash the power of Zipy session URLs in Raygun for seamless error tracking and insightful debugging.
const zipySessionUrl = window.zipy.getCurrentSessionURL();
try {
throw new Error("Error Created for Raygun V2");
} catch (error) {
rg4js('withCustomData', { zipy : zipySessionUrl });
rg4js('send', error);
}// V1 of raygun library
const zipySessionUrl = window.zipy.getCurrentSessionURL();
try {
throw new Error("Error Created for Raygun V1");
} catch (error) {
Raygun.withCustomData({ zipy : zipySessionUrl });
Raygun.send(error);
}Last updated