()
| 185 | |
| 186 | |
| 187 | def _telemetry_status_payload() -> dict[str, Any]: |
| 188 | try: |
| 189 | import uncommon_route.telemetry as telemetry |
| 190 | return telemetry.status() |
| 191 | except Exception as exc: |
| 192 | return { |
| 193 | "enabled": False, |
| 194 | "available": False, |
| 195 | "load_error": str(exc), |
| 196 | } |
| 197 | |
| 198 | |
| 199 | def _bundle_manifest(path: Path, *, recent_traces: list[dict[str, Any]]) -> dict[str, Any]: |
no test coverage detected