Get runtime statistics (placeholder for future metrics)
(&self)
| 112 | |
| 113 | /// Get runtime statistics (placeholder for future metrics) |
| 114 | pub(crate) fn stats(&self) -> RuntimeStats { |
| 115 | RuntimeStats { |
| 116 | uptime: self.uptime(), |
| 117 | worker_threads: self.config.worker_threads.unwrap_or(0), |
| 118 | max_blocking_threads: self.config.max_blocking_threads.unwrap_or(0), |
| 119 | } |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | /// Runtime statistics for monitoring |
no test coverage detected