Shutdown all monitoring threads
(self)
| 1276 | del self.monitoring_threads[process] |
| 1277 | |
| 1278 | def shutdown(self) -> None: |
| 1279 | """Shutdown all monitoring threads""" |
| 1280 | self.shutdown_event.set() |
| 1281 | self.monitoring_threads.clear() |
| 1282 | |
| 1283 | def check_for_stuck_processes(self) -> list[StuckProcessSignal]: |
| 1284 | """Check for any stuck process signals from monitoring threads""" |
no test coverage detected