| 171 | |
| 172 | @dataclass |
| 173 | class Result: |
| 174 | ok: bool |
| 175 | status: int |
| 176 | latency_ms: float |
| 177 | bytes: int |
| 178 | t_end_s: float = 0.0 # seconds since test start when the response returned |
| 179 | err: str = "" |
| 180 | |
| 181 | |
| 182 | def pcts(values: list[float]) -> dict[str, float]: |