Sentry_deno
This is an unofficial port of the Sentry SDK (@sentry/browser
) to Deno.
import * as Sentry from "https://deno.land/x/sentry_deno/main.ts";
import * as log from "https://deno.land/std@0.146.0/log/mod.ts";
Sentry.init({
dsn: "<your-sentry-dsn-here>",
tracesSampleRate: 1.0,
});
async function testEvent() {
log.info("Sending test event to Sentry.");
try {
throw new Error("Nope.");
} catch (e) {
Sentry.captureException(e);
// Sentry.captureMessage("Gotcha!");
await Sentry.flush();
}
}
await testEvent();
Note: Some code in this repository may not yet pass type-checking. Running this module with deno run --check
may not always succeed.