chore(sentry): smaller sampling rate

This commit is contained in:
Stan Girard 2023-11-24 14:42:01 +01:00
parent f578b2fa00
commit a5518e6b2a
4 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ sentry_dsn = os.getenv("SENTRY_DSN")
if sentry_dsn:
sentry_sdk.init(
dsn=sentry_dsn,
traces_sample_rate=1.0,
traces_sample_rate=0.1,
)
app = FastAPI()

View File

@ -22,7 +22,7 @@ sentry_dsn = os.getenv("SENTRY_DSN")
if sentry_dsn:
sentry_sdk.init(
dsn=sentry_dsn,
traces_sample_rate=1.0,
traces_sample_rate=0.1,
)
app = FastAPI()

View File

@ -41,7 +41,7 @@ sentry_dsn = os.getenv("SENTRY_DSN")
if sentry_dsn:
sentry_sdk.init(
dsn=sentry_dsn,
traces_sample_rate=1.0,
traces_sample_rate=0.1,
)
app = FastAPI()

View File

@ -23,7 +23,7 @@ sentry_dsn = os.getenv("SENTRY_DSN")
if sentry_dsn:
sentry_sdk.init(
dsn=sentry_dsn,
traces_sample_rate=1.0,
traces_sample_rate=0.1,
)
app = FastAPI()