Description
Description
Describe the solution you'd like
In bugsnag events from iOS devices, I would like to know the number of threads that were alive when the event happened.
Describe alternatives you've considered
- Looking at Apple crash reports in Xcode.
- Write a native method to get number of threads, then leave a breadcrumb every 30 seconds stating the number of threads
Additional context
Grand Central Dispatch is limited to 64 threads. When this limit is reached, any code that tries to wait run on a DispatchQueue
will cause the app to hang. This leads to events with varying stacktraces.
It's not obvious that such a crash is caused by the GCD thread pool limit. However, the number of threads is often 50+ more than normal when GCD is hitting the limit. For example, Apple crash reports showed 120+ threads for these app hangs, but only 70 threads for other crashes. So seeing the number of threads will help identify this specific issue.
If you guys can think of a better way to identity GCD thread pool exhaustion, I'd be open to that as well!