about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2025-01-19 15:09:39 +0100
committerAlan Pearce2025-01-19 15:09:39 +0100
commit19d8046f99d9f395f8529886f37292d99dc1a4d9 (patch)
tree781aa6add3ba4981c501a313b18ef5f9b486f2c2
parent1b4bc895cf7a1943ba61448b29bb1dadd81c8182 (diff)
downloadsearchix-19d8046f99d9f395f8529886f37292d99dc1a4d9.tar.lz
searchix-19d8046f99d9f395f8529886f37292d99dc1a4d9.tar.zst
searchix-19d8046f99d9f395f8529886f37292d99dc1a4d9.zip
feat(sentry): trace all transactions
-rw-r--r--searchix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchix.go b/searchix.go
index 7022081..031db31 100644
--- a/searchix.go
+++ b/searchix.go
@@ -138,7 +138,7 @@ type Server struct {
 func New(cfg *config.Config, log *log.Logger) (*Server, error) {
 	err := sentry.Init(sentry.ClientOptions{
 		EnableTracing:    true,
-		TracesSampleRate: 0.1,
+		TracesSampleRate: 1.0,
 		Dsn:              cfg.Web.SentryDSN,
 		Environment:      cfg.Web.Environment,
 	})