Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created June 11, 2020 07:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save velotiotech/dc7cf76f7960956dd4aa804d5ffe7dd6 to your computer and use it in GitHub Desktop.
Save velotiotech/dc7cf76f7960956dd4aa804d5ffe7dd6 to your computer and use it in GitHub Desktop.
def init_tracer(service):
logging.getLogger('').handlers = []
logging.basicConfig(format='%(message)s', level=logging.DEBUG)
config = Config(
config={
'sampler': {
'type': 'const',
'param': 1,
},
'logging': True,
},
service_name=service,
)
return config.initialize_tracer()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment