(self, limit: int = 50)
| 1456 | with self._lock: |
| 1457 | items = [] |
| 1458 | for (src_ip, dst_ip, dst_port), metrics in self._beacon_scored.items(): |
| 1459 | items.append({ |
| 1460 | 'src_ip': src_ip, |
| 1461 | 'dst_ip': dst_ip, |
| 1462 | 'dst_port': dst_port, |
| 1463 | 'score': round(metrics['score'], 3), |
| 1464 | 'mean_interval_s': round(metrics['mean_interval_s'], 2), |
no test coverage detected