Skip to content

Commit

Permalink
cleanups of imports
Browse files Browse the repository at this point in the history
  • Loading branch information
s4ke committed Oct 30, 2024
1 parent 54e1ff5 commit 2af7d8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion skipper/skipper/telemetry.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ def _instrument() -> None:
from opentelemetry.instrumentation.celery import CeleryInstrumentor # type: ignore
from opentelemetry.instrumentation.requests import RequestsInstrumentor # type: ignore
from opentelemetry.instrumentation.botocore import BotocoreInstrumentor # type: ignore
from opentelemetry.instrumentation.psycopg2 import Psycopg2Instrumentor # type: ignore
from opentelemetry.instrumentation.psycopg import PsycopgInstrumentor # type: ignore
from opentelemetry.instrumentation.redis import RedisInstrumentor # type: ignore

DjangoInstrumentor().instrument()
CeleryInstrumentor().instrument() # type: ignore
RequestsInstrumentor().instrument()
BotocoreInstrumentor().instrument() # type: ignore
PsycopgInstrumentor().instrument()
RedisInstrumentor().instrument()


Expand Down

0 comments on commit 2af7d8c

Please sign in to comment.