Open
Description
Are there any monitoring tools available for how many coroutines are currently active and their state etc? It would be nice if it could be exposed so that something like Prometheus can scrape it and visualise it in grafana.
It will also help in debugging leaks - and errors that might occur if we see coroutines just rising linearly
If not can this be done by looking at the thread stats instead?
Go exposes it via runtime.NumGoroutines()
Related:? #494