mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-29 13:12:39 +08:00
7 lines
177 B
Python
7 lines
177 B
Python
from ddtrace import tracer
|
|
|
|
if __name__ == '__main__':
|
|
assert tracer.writer.api.hostname == '172.10.0.1'
|
|
assert tracer.writer.api.port == 8120
|
|
print('Test success')
|