I need a diagnostic/admin page to show what Autofac is managing at the current point in time. Good for finding leaks and bugs.
There is a way to count the number of objects Autofac has been resolving. However it's heavy and shouldn't be used in production.
There is a way to log all resolutions. Similarly, it shouldn't be used in production.
Unlike those solutions, all I need is a snapshot of currently managed objects. Is this possible, without capturing every resolution event and storing it (as done above)?