Rich Barlow
Rich Barlow
@ipatch i got the same error. i think `get_clients` is only available in nightly right now (I'm in 9.1). i tried changing it to `get_active_clients`...which doesn't error out at least....
after a little more playing around, it looks like my main problem is that my nvim config is symlinked to my dotfiles repo. and i need to set `pathStrict =...
@bretterer any updates on this? Does Okta have a migration plan? Or should we switch to a new library altogether?
working: ``` def consumer_job(event): context = Context(trace_id=trace_id) tracer.context_provider.activate(context) with tracer.trace("consumer_job", service=settings.DD_SERVICE): pass ```` not working: ``` @tracer.wrap("consumer_job", service=settings.DD_SERVICE def consumer_job(event): trace_id = get_trace_id(event) tracer.get_current_span().trace_id = trace_id ``` In this case...
We're not using confluent-kafka, we're using aiokafka (we're actually using our own wrapper around aiokafka) which I don't believe is supported.
Appologies, i meant `current_span` not `get_current_span`. For the not working example I was able to change the trace id and it doesn't error. However it stops reporting to datadog then....