Is there a way to get coroutines stats via prometh...
# coroutines
a
Is there a way to get coroutines stats via prometheus or influx? Like how many are currently active/running/idle etc
e
No, but take a look at
kotlix-coroutines-debug
module. It has an experimental API to retrieve information on coroutines. You can use it to write your integration. https://github.com/Kotlin/kotlinx.coroutines/blob/master/kotlinx-coroutines-debug/README.md
a
Thanks!