Record error occurrence.
(self, error_type: str)
| 95 | }) |
| 96 | |
| 97 | def record_error(self, error_type: str): |
| 98 | """Record error occurrence.""" |
| 99 | self.metrics["error_counts"].append({ |
| 100 | "error_type": error_type, |
| 101 | "timestamp": time.perf_counter() |
| 102 | }) |
| 103 | |
| 104 | def record_queue_depth(self, conversation_id: str, depth: int): |
| 105 | """Record queue depth for conversation.""" |
no outgoing calls
no test coverage detected