Devi

Results 7 comments of Devi

came to github to open an issue for the same and found this. thanks @JBAhire

>Hypertrace as it was designed originally did not intended to do sampling because it aims to collect all data, slice and dice it and turn it into meaningful insights. In...

@jcchavezs @kotharironak though Hypertrace doesn't solve this today, is this something in your roadmap to solve this?

>How are you currently dropping spans for an entire trace? Are you doing at the collector level? We currently do sampling and dropping at otel collector level, with [probabilistic sampling...

@MrMage We've realized that this is not a PDO specific problem, but rather the lib holding spans until the request-response cycle is completed. This is causing memory bloats for requests...

I also had to init the FDT like the following to make the above snippet work instead of just `DebugToolbarExtension(app)` ``` app.extensions = getattr(app, 'extensions', {}) app.extensions['debugtoolbar'] = DebugToolbarExtension(app) ```

We could use `job.get_call_string()` instead of just `job.func_name` in the [code](https://github.com/selwin/rq/blob/ce731bd35fbcb6634065472f635f86b57ff1403f/rq/registry.py) that @selwin suggested, to achieve that. Isn't it?