chore: use singular style in config class name (#5489)

This commit is contained in:
Bowen Liang
2024-06-22 09:54:25 +08:00
committed by GitHub
parent 9a5c423d59
commit 8890978ad3
11 changed files with 82 additions and 82 deletions

View File

@@ -0,0 +1,23 @@
from typing import Optional
from pydantic import BaseModel, Field, NonNegativeFloat
class SentryConfig(BaseModel):
"""
Sentry configs
"""
SENTRY_DSN: Optional[str] = Field(
description='Sentry DSN',
default=None,
)
SENTRY_TRACES_SAMPLE_RATE: NonNegativeFloat = Field(
description='Sentry trace sample rate',
default=1.0,
)
SENTRY_PROFILES_SAMPLE_RATE: NonNegativeFloat = Field(
description='Sentry profiles sample rate',
default=1.0,
)