Skip to content

Commit

Permalink
chore: disable sentry defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
chambaz committed Oct 20, 2024
1 parent 230f55a commit e2927a5
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 18 deletions.
10 changes: 5 additions & 5 deletions apps/marginfi-v2-trading/sentry.client.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import * as Sentry from "@sentry/nextjs";

Sentry.init({
dsn: "https://[email protected]/4507934431248384",

// Define how likely traces are sampled. Adjust this value in production, or use tracesSampler for greater control.
tracesSampleRate: 1,

// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
autoSessionTracking: false,
integrations: [],
defaultIntegrations: false,
enableTracing: false,
tracesSampleRate: 0,
});
10 changes: 5 additions & 5 deletions apps/marginfi-v2-trading/sentry.edge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import * as Sentry from "@sentry/nextjs";

Sentry.init({
dsn: "https://[email protected]/4507934431248384",

// Define how likely traces are sampled. Adjust this value in production, or use tracesSampler for greater control.
tracesSampleRate: 1,

// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
autoSessionTracking: false,
integrations: [],
defaultIntegrations: false,
enableTracing: false,
tracesSampleRate: 0,
});
10 changes: 5 additions & 5 deletions apps/marginfi-v2-trading/sentry.server.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import * as Sentry from "@sentry/nextjs";

Sentry.init({
dsn: "https://[email protected]/4507934431248384",

// Define how likely traces are sampled. Adjust this value in production, or use tracesSampler for greater control.
tracesSampleRate: 1,

// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
autoSessionTracking: false,
integrations: [],
defaultIntegrations: false,
enableTracing: false,
tracesSampleRate: 0,
});
6 changes: 5 additions & 1 deletion apps/marginfi-v2-ui/sentry.client.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ import * as Sentry from "@sentry/nextjs";

Sentry.init({
dsn: "https://[email protected]/4505861944573952",
tracesSampleRate: 1,
debug: false,
autoSessionTracking: false,
integrations: [],
defaultIntegrations: false,
enableTracing: false,
tracesSampleRate: 0,
});
6 changes: 5 additions & 1 deletion apps/marginfi-v2-ui/sentry.edge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ import * as Sentry from "@sentry/nextjs";

Sentry.init({
dsn: "https://[email protected]/4505861944573952",
tracesSampleRate: 1,
debug: false,
autoSessionTracking: false,
integrations: [],
defaultIntegrations: false,
enableTracing: false,
tracesSampleRate: 0,
});
6 changes: 5 additions & 1 deletion apps/marginfi-v2-ui/sentry.server.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ import * as Sentry from "@sentry/nextjs";

Sentry.init({
dsn: "https://[email protected]/4505861944573952",
tracesSampleRate: 1,
debug: false,
autoSessionTracking: false,
integrations: [],
defaultIntegrations: false,
enableTracing: false,
tracesSampleRate: 0,
});

0 comments on commit e2927a5

Please sign in to comment.