diff --git a/sentry_sdk/integrations/sqlalchemy.py b/sentry_sdk/integrations/sqlalchemy.py index 962fe4ee53..e3cc637ab0 100644 --- a/sentry_sdk/integrations/sqlalchemy.py +++ b/sentry_sdk/integrations/sqlalchemy.py @@ -140,6 +140,18 @@ def _get_db_system(name: str) -> "Optional[str]": if "oracle" in name: return "oracle" + if "snowflake" in name: + return "snowflake" + + if "clickhouse" in name: + return "clickhouse" + + if "mongodb" in name: + return "mongodb" + + if "cockroachdb" in name: + return "cockroachdb" + return None