Skip to content

Instantly share code, notes, and snippets.

@kiranumrao
Created January 30, 2019 08:48
Show Gist options
  • Save kiranumrao/52d2a81d27e668ecb8e14b6993caca5e to your computer and use it in GitHub Desktop.
Save kiranumrao/52d2a81d27e668ecb8e14b6993caca5e 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