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