We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e6088f commit 01e4b6cCopy full SHA for 01e4b6c
instana/__init__.py
@@ -1,11 +1,13 @@
1
from __future__ import absolute_import
2
+import os
3
import opentracing
4
from .sensor import Sensor
5
from .tracer import InstanaTracer
6
from .options import Options
7
-# Import & initialize instrumentation
8
-from .instrumentation import urllib3
+if "INSTANA_DISABLE_AUTO_INSTR" not in os.environ:
9
+ # Import & initialize instrumentation
10
+ from .instrumentation import urllib3
11
12
"""
13
The Instana package has two core components: the sensor and the tracer.
0 commit comments