Sümer Cip
Sümer Cip
Glad it worked! Your current plan makes sense.
> Is this known behavior? Is there a way to avoid the mis-labeling? The underlying hashtable works by hashing the `CodeObject*` and as both A and B share the same...
Hi, How about following: ```python from gevent import monkey monkey.patch_all() from ddtrace.profiling import Profiler from ddtrace.profiling.collector import stack p = Profiler() p.start() stack_collector = None for c in p._collectors: if...
Additional finding: When I put `import ddtrace.auto` at the top, before `gevent` monkey patches, it works.
@P403n1x87 , pinging maybe you missed my message above?
Oh ok! I just wanted to ensure this is the way for profiling gevent apps. One final thing: don't you think this should work with: ``` import ddtrace.profiling.auto ``` Because,...
You are right! That might be handy. I will look into this.
I will look into this!
Hmm. Thanks for reporting this. Any hints on the threshold? Is it like %90 of memory, I mean can we be hitting (somewhat) to any OOM related thing here? And...