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 2ed5338 commit 0ead503Copy full SHA for 0ead503
instana/__init__.py
@@ -46,9 +46,6 @@ def load(_):
46
if "INSTANA_DEBUG" in os.environ:
47
print("Instana: activated via AUTOWRAPT_BOOTSTRAP")
48
49
- if "INSTANA_ENDPOINT_URL" in os.environ:
50
- print("load: detected lambda environment")
51
-
52
53
def get_lambda_handler_or_default():
54
"""
instana/singletons.py
@@ -11,11 +11,9 @@
11
span_recorder = None
12
13
if os.environ.get("INSTANA_ENDPOINT_URL", False):
14
- print("Lambda environment")
15
agent = AWSLambdaAgent()
16
span_recorder = AWSLambdaRecorder(agent)
17
else:
18
- print("Standard host environment")
19
agent = StandardAgent()
20
span_recorder = StandardRecorder()
21
0 commit comments