Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created June 11, 2020 07:48
Embed
What would you like to do?
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