fix(backend): tweak traces/profiles sample rate

This commit is contained in:
sam 2023-09-20 15:28:20 +02:00
parent 0e6f3a47f4
commit a297ec681e
No known key found for this signature in database
GPG Key ID: B4EF20DDE721CAA1
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ func run(c *cli.Context) error {
Debug: os.Getenv("DEBUG") == "true", Debug: os.Getenv("DEBUG") == "true",
Release: server.Tag, Release: server.Tag,
EnableTracing: true, EnableTracing: true,
TracesSampleRate: 1.0, TracesSampleRate: 0.05,
ProfilesSampleRate: 1.0, ProfilesSampleRate: 0.05,
}) })
} }