Skip to content

Commit 70af967

Browse files
committed
add sentry package
1 parent 6d1bf56 commit 70af967

File tree

1 file changed

+6
-7
lines changed
  • docs/platforms/go/common/integrations

1 file changed

+6
-7
lines changed

docs/platforms/go/common/integrations/index.mdx

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@ To disable default integrations, you can provide an empty list of integrations w
1212

1313
```go
1414
sentry.Init(sentry.ClientOptions{
15-
Dsn: "___PUBLIC_DSN___",
16-
Integrations: func(i []Integration) []Integration {
17-
return []Integration{}
18-
},
19-
}
20-
)
15+
Dsn: "https://[email protected]/0",
16+
Integrations: func(i []sentry.Integration) []sentry.Integration {
17+
return []sentry.Integration{}
18+
},
19+
})
2120
```
2221

2322
### ModulesIntegration
@@ -26,7 +25,7 @@ This integration records all Go modules used in your application, including the
2625

2726
### EnvironmentIntegration
2827

29-
This integration fills the event data with Go runtime and OS-level specific information, such as CPU core/thread count, Go architecture, and runtime version.
28+
This integration fills the event data with Go runtime and OS-level specific information, such as CPU core/thread count and runtime version.
3029

3130
### IgnoreErrorsIntegration
3231

0 commit comments

Comments
 (0)