Skip to content

Commit ebd26d2

Browse files
remove kinde instrumentation
1 parent 33a6014 commit ebd26d2

4 files changed

Lines changed: 1 addition & 86 deletions

File tree

drift/core/drift_sdk.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -471,13 +471,6 @@ def _init_auto_instrumentations(self) -> None:
471471
except Exception as e:
472472
logger.debug(f"Socket instrumentation initialization failed: {e}")
473473

474-
# try:
475-
# from ..instrumentation.kinde import KindeInstrumentation
476-
# _ = KindeInstrumentation(enabled=True)
477-
# logger.debug("Kinde instrumentation initialized (REPLAY mode - auth token validation)")
478-
# except Exception as e:
479-
# logger.debug(f"Kinde instrumentation initialization failed: {e}")
480-
481474
def create_env_vars_snapshot(self) -> None:
482475
"""Create a span capturing all environment variables.
483476

drift/instrumentation/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22

33
from .base import InstrumentationBase
44
from .django import DjangoInstrumentation
5-
from .kinde import KindeInstrumentation
6-
from .registry import install_hooks, patch_instances_via_gc, register_patch
5+
from .registry import install_hooks, register_patch
76
from .wsgi import WsgiInstrumentation
87

98
__all__ = [
109
"InstrumentationBase",
1110
"DjangoInstrumentation",
12-
"KindeInstrumentation",
1311
"WsgiInstrumentation",
1412
"register_patch",
1513
"install_hooks",

drift/instrumentation/kinde/__init__.py

Lines changed: 0 additions & 5 deletions
This file was deleted.

drift/instrumentation/kinde/instrumentation.py

Lines changed: 0 additions & 71 deletions
This file was deleted.

0 commit comments

Comments
 (0)