Created
September 29, 2020 21:49
-
-
Save ab/db52d7492e473128568d1440669da50a to your computer and use it in GitHub Desktop.
Error messages introduced by https://github.com/DataDog/dd-trace-py/pull/1548
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from ddtrace import tracer | |
@tracer.wrap() | |
def traced(): | |
return "Traced" | |
def not_traced(): | |
return "Not traced" | |
if __name__ == "__main__": | |
print(not_traced()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+ python test.py | |
- DATADOG TRACER DIAGNOSTIC - Agent not reachable. Exception raised: [Errno 111] Connection refused | |
Not traced |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment