We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1729467 commit 8891808Copy full SHA for 8891808
plugins/destination/postgresql/main.go
@@ -5,6 +5,10 @@ import (
5
"github.com/cloudquery/plugin-sdk/serve"
6
)
7
8
+const (
9
+ sentryDSN = "https://19d1257d36854a51b17c06614e76dc2d@o1396617.ingest.sentry.io/4503896817336320"
10
+)
11
+
12
func main() {
- serve.Destination(client.New())
13
+ serve.Destination(client.New(), serve.WithDestinationSentryDSN(sentryDSN))
14
}
0 commit comments