When working on a live system, the feedback loop can be pretty tricky. You don't want to entirely suspend a system, but you really want to get the info out of the system. Memory leaks in particular can be a nightmare, because they can take a while to show up and, definitionally, won't survive a process restart. Let's talk about debugging memory leaks. objgraph is a great library to get a birds-eye view of whats in your memory. print("Showing growth...")objgraph.show_growth()print("...end show...