当前位置: 首页 > news >正文

Python同步vs异步性能对比实验-2

文章目录

  • 3. 异步执行测试
  • 4. 多线程执行测试

3. 异步执行测试

import asyncio
import aiohttp
from typing import List, Dict, Any
from p17_1realIO import RealisticIOLoadGenerator, PerformanceBenchmarkclass AsynchronousImplementation:"""异步执行测试"""def __init__(self, load_generator: RealisticIOLoadGenerator):self.load_generator = load_generatorasync def create_session(self) -> aiohttp.ClientSession:"""创建优化的aiohttp会话"""connector = aiohttp.TCPConnector(limit=4,  # 统一并行数量为4个limit_per_host=4,  # 统一并行数量为4个keepalive_timeout=30,force_close=False)return aiohttp.ClientSession(connector=connector,timeout=aiohttp.ClientTimeout(total=10),raise_for_status=False)async def run_concurrent_tasks(self, num_tasks: int = 100) -> List[Dict[str, Any]]:  # 统一任务数量为100"""并发执行异步任务"""session = await self.create_session()tasks = [self.load_generator.async_http_request(session, i)for i in range(num_tasks)]start_time = asyncio.get_event_loop().time()results = await asyncio.gather(*tasks, return_exceptions=True)total_time = asyncio.get_event_loop().time() - start_time# 处理异常valid_results = []latencies = []for i, result in enumerate(results):if isinstance(result, Exception):valid_results.append({'task_id': i,'error': str(result),'success': False,'duration': 0})else:valid_results.append(result)if result['success']:latencies.append(result['duration'])await session.close()return valid_results, total_time, latenciesasync def run_streaming_tasks(self, duration: float = 10.0) -> List[Dict[str, Any]]:  # 统一测试时长为10秒"""流式异步任务执行"""session = await self.create_session()results = []latencies = []start_time = asyncio.get_event_loop().time()task_id = 0# 使用信号量控制并发度semaphore = asyncio.Semaphore(4)  # 统一并行数量为4个async def bounded_task(tid: int):async with semaphore:return await self.load_generator.async_http_request(session, tid)# 动态创建和等待任务running_tasks = set()while asyncio.get_event_loop().time() - start_time < duration:# 创建新任务task = asyncio.create_task(bounded_task(task_id))running_tasks.add(task)task_id += 1# 清理已完成的任务(非阻塞)done_tasks, pending_tasks = await asyncio.wait(running_tasks, timeout=0.01,return_when=asyncio.FIRST_COMPLETED)for done_task in done_tasks:try:result = await done_taskresults.append(result)if result['success']:latencies.append(result['duration'])except Exception as e:results.append({'task_id': task_id,'error': str(e),'success': False,'duration': 0})running_tasks = pending_tasks# 防止CPU占用过高await asyncio.sleep(0.001)# 等待剩余任务完成if running_tasks:finished_results = await asyncio.gather(*running_tasks, return_exceptions=True)for result in finished_results:if isinstance(result, Exception):results.append({'task_id': task_id,'error': str(result),'success': False,'duration': 0})elif isinstance(result, dict):results.append(result)if result['success']:latencies.append(result['duration'])total_time = asyncio.get_event_loop().time() - start_timeawait session.close()return results, total_time, latenciesasync def main():"""主异步函数"""async_impl = AsynchronousImplementation(RealisticIOLoadGenerator())results, total_time, latencies = await async_impl.run_streaming_tasks()print(f"Streaming tasks results: {results}")print(f"Total time: {total_time:.2f} seconds")print(f"Average latency: {sum(latencies) / len(latencies):.4f} seconds")if __name__ == "__main__":asyncio.run(main())

返回:

Streaming tasks results: [{'task_id': 3, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.6977918148040771, 'timestamp': 1763019379.6680617, 'success': True}, {'task_id': 1, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.987130880355835, 'timestamp': 1763019380.9340987, 'success': True}, {'task_id': 5, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.3824779987335205, 'timestamp': 1763019382.3165767, 'success': True}, {'task_id': 0, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 4.929753541946411, 'timestamp': 1763019382.8676183, 'success': True}, {'task_id': 4, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.4134671688079834, 'timestamp': 1763019383.0825377, 'success': True}, {'task_id': 2, 'url': 'https://httpbin.org/user-agent', 'error': '', 'duration': 5.54500937461853, 'success': False}, {'task_id': 6, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.411435604095459, 'timestamp': 1763019383.7280123, 'success': True}, {'task_id': 7, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.2569451332092285, 'timestamp': 1763019384.1266105, 'success': True}, {'task_id': 9, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.9064431190490723, 'timestamp': 1763019385.4146383, 'success': True}, {'task_id': 8, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.53655743598938, 'timestamp': 1763019385.6211169, 'success': True}, {'task_id': 10, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.533334493637085, 'timestamp': 1763019386.264092, 'success': True}, {'task_id': 13, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.1939432621002197, 'timestamp': 1763019386.8172307, 'success': True}, {'task_id': 12, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.5113637447357178, 'timestamp': 1763019386.926002, 'success': True}, {'task_id': 15, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.831007719039917, 'timestamp': 1763019387.6493292, 'success': True}, {'task_id': 477, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.1435940265655518, 'timestamp': 1763019676.472649, 'success': True}, {'task_id': 705, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.6739020347595215, 'timestamp': 1763019819.1667736, 'success': True}, {'task_id': 228, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.3251643180847168, 'timestamp': 1763019523.7200005, 'success': True}, {'task_id': 486, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.72390079498291, 'timestamp': 1763019684.6492727, 'success': True}, {'task_id': 58, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.4863979816436768, 'timestamp': 1763019415.3733883, 'success': True}, {'task_id': 186, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.7312753200531006, 'timestamp': 1763019501.7311542, 'success': True}, {'task_id': 272, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.5566811561584473, 'timestamp': 1763019552.7497137, 'success': True}, {'task_id': 358, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.2435581684112549, 'timestamp': 1763019600.8547316, 'success': True}, {'task_id': 528, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 4.2490808963775635, 'timestamp': 1763019714.2984495, 'success': True}, {'task_id': 660, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.195125102996826, 'timestamp': 1763019792.4189236, 'success': True}, {'task_id': 749, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 5.012528419494629, 'timestamp': 1763019846.2619998, 'success': True}, {'task_id': 229, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.8730981349945068, 'timestamp': 1763019525.5930986, 'success': True}, {'task_id': 400, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.261446714401245, 'timestamp': 1763019630.8982623, 'success': True}, {'task_id': 706, 'url': 'https://httpbin.org/get', 'status': 502, 'duration': 1.5454583168029785, 'timestamp': 1763019818.8504293, 'success': True}, {'task_id': 59, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.46756553649902344, 'timestamp': 1763019413.9279773, 'success': True}, {'task_id': 187, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.3606677055358887, 'timestamp': 1763019503.5550451, 'success': True}, {'task_id': 273, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.3150408267974854, 'timestamp': 1763019554.4884417, 'success': True}, {'task_id': 359, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.7804150581359863, 'timestamp': 1763019600.8192542, 'success': True}, {'task_id': 487, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 4.382148504257202, 'timestamp': 1763019685.8913512, 'success': True}, {'task_id': 529, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.647730827331543, 'timestamp': 1763019712.2108393, 'success': True}, {'task_id': 661, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.473262071609497, 'timestamp': 1763019791.6717732, 'success': True}, {'task_id': 750, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.0512661933898926, 'timestamp': 1763019844.0772498, 'success': True}, {'task_id': 230, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.8924362659454346, 'timestamp': 1763019525.172953, 'success': True}, {'task_id': 401, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.1225430965423584, 'timestamp': 1763019630.3495977, 'success': True}, {'task_id': 488, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 4.005843162536621, 'timestamp': 1763019688.3416479, 'success': True}, {'task_id': 707, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.7478289604187012, 'timestamp': 1763019820.2791674, 'success': True}, {'task_id': 60, 'url': 'https://httpbin.org/status/200', 'status': 502, 'duration': 1.5132346153259277, 'timestamp': 1763019415.441212, 'success': True}, {'task_id': 188, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 0.9298532009124756, 'timestamp': 1763019501.5904367, 'success': True}, {'task_id': 274, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.834925889968872, 'timestamp': 1763019554.3533483, 'success': True}, {'task_id': 360, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.222022771835327, 'timestamp': 1763019602.4902644, 'success': True}, {'task_id': 530, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.6115095615386963, 'timestamp': 1763019714.7525122, 'success': True}, {'task_id': 662, 'url': 'https://httpbin.org/user-agent', 'error': '', 'duration': 5.627548456192017, 'success': False}, {'task_id': 751, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.597462892532349, 'timestamp': 1763019846.686775, 'success': True}, {'task_id': 231, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.32860803604126, 'success': False}, {'task_id': 402, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.9761474132537842, 'timestamp': 1763019631.8775084, 'success': True}, {'task_id': 489, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.1151938438415527, 'timestamp': 1763019685.7644665, 'success': True}, {'task_id': 708, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.2931444644927979, 'timestamp': 1763019820.1435738, 'success': True}, {'task_id': 61, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.29168224334716797, 'timestamp': 1763019414.3157294, 'success': True}, {'task_id': 189, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.1418874263763428, 'timestamp': 1763019503.139214, 'success': True}, {'task_id': 275, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.1824309825897217, 'timestamp': 1763019554.9321446, 'success': True}, {'task_id': 361, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 4.136039972305298, 'timestamp': 1763019604.754045, 'success': True}, {'task_id': 531, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.730363130569458, 'timestamp': 1763019713.9412024, 'success': True}, {'task_id': 663, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.827596664428711, 'timestamp': 1763019796.463991, 'success': True}, {'task_id': 752, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.6818137168884277, 'timestamp': 1763019844.1221256, 'success': True}, {'task_id': 232, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.831397294998169, 'timestamp': 1763019529.144831, 'success': True}, {'task_id': 403, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.369068145751953, 'timestamp': 1763019632.7199247, 'success': True}, {'task_id': 490, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.1327612400054932, 'timestamp': 1763019686.8972278, 'success': True}, {'task_id': 709, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.3860766887664795, 'timestamp': 1763019822.5528502, 'success': True}, {'task_id': 62, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.700320482254028, 'timestamp': 1763019419.0160499, 'success': True}, {'task_id': 190, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.2057366371154785, 'timestamp': 1763019504.7961733, 'success': True}, {'task_id': 276, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.27718186378479, 'timestamp': 1763019556.6206155, 'success': True}, {'task_id': 362, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.286306142807007, 'timestamp': 1763019603.1055603, 'success': True}, {'task_id': 532, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.210557699203491, 'timestamp': 1763019714.727249, 'success': True}, {'task_id': 664, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 4.219603538513184, 'timestamp': 1763019795.8913767, 'success': True}, {'task_id': 753, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 4.329871654510498, 'timestamp': 1763019848.4071214, 'success': True}, {'task_id': 491, 'url': 'https://httpbin.org/status/200', 'error': '', 'duration': 5.6087000370025635, 'success': False}, {'task_id': 404, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.570584774017334, 'timestamp': 1763019632.468847, 'success': True}, {'task_id': 710, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.4158260822296143, 'timestamp': 1763019821.2638311, 'success': True}, {'task_id': 233, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.526710271835327, 'timestamp': 1763019528.119809, 'success': True}, {'task_id': 63, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.317284107208252, 'timestamp': 1763019416.6906724, 'success': True}, {'task_id': 191, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.1036040782928467, 'timestamp': 1763019502.8347583, 'success': True}, {'task_id': 277, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.1398611068725586, 'timestamp': 1763019557.4932094, 'success': True}, {'task_id': 363, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.3402047157287598, 'timestamp': 1763019603.1949363, 'success': True}, {'task_id': 533, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.666140079498291, 'timestamp': 1763019716.6073425, 'success': True}, {'task_id': 665, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.1341516971588135, 'timestamp': 1763019793.5530753, 'success': True}, {'task_id': 754, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.2647860050201416, 'timestamp': 1763019847.3869116, 'success': True}, {'task_id': 234, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.4826745986938477, 'timestamp': 1763019529.414994, 'success': True}, {'task_id': 405, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.259680986404419, 'timestamp': 1763019634.045457, 'success': True}, {'task_id': 711, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 5.121639966964722, 'timestamp': 1763019825.2652137, 'success': True}, {'task_id': 192, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.175219774246216, 'timestamp': 1763019507.009978, 'success': True}, {'task_id': 278, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.011537551879883, 'timestamp': 1763019557.4999793, 'success': True}, {'task_id': 364, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.2632017135620117, 'timestamp': 1763019605.7534661, 'success': True}, {'task_id': 492, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.538487672805786, 'timestamp': 1763019689.0460656, 'success': True}, {'task_id': 534, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.7290942668914795, 'timestamp': 1763019715.0275438, 'success': True}, {'task_id': 666, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.6189846992492676, 'timestamp': 1763019795.173133, 'success': True}, {'task_id': 755, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 0.6892726421356201, 'timestamp': 1763019846.9512725, 'success': True}, {'task_id': 235, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.008188247680664, 'timestamp': 1763019531.1284022, 'success': True}, {'task_id': 406, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.4092283248901367, 'timestamp': 1763019633.2877955, 'success': True}, {'task_id': 64, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.6957025527954102, 'timestamp': 1763019417.1369145, 'success': True}, {'task_id': 712, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.7189884185791016, 'timestamp': 1763019820.9981558, 'success': True}, {'task_id': 65, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.7959599494934082, 'timestamp': 1763019417.4866323, 'success': True}, {'task_id': 193, 'url': 'https://httpbin.org/delay/1', 'status': 502, 'duration': 2.2576918601989746, 'timestamp': 1763019505.396906, 'success': True}, {'task_id': 279, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.4088618755340576, 'timestamp': 1763019556.3421812, 'success': True}, {'task_id': 365, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.263497829437256, 'timestamp': 1763019606.3690581, 'success': True}, {'task_id': 493, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.501722812652588, 'timestamp': 1763019689.3989506, 'success': True}, {'task_id': 535, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.6610429286956787, 'timestamp': 1763019716.3903406, 'success': True}, {'task_id': 667, 'url': 'https://httpbin.org/status/200', 'status': 502, 'duration': 1.1991522312164307, 'timestamp': 1763019796.3732662, 'success': True}, {'task_id': 756, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.4952614307403564, 'timestamp': 1763019849.1820364, 'success': True}, {'task_id': 236, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.5079152584075928, 'timestamp': 1763019531.6527462, 'success': True}, {'task_id': 407, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.26714110374450684, 'timestamp': 1763019632.7359881, 'success': True}, {'task_id': 713, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.9079270362854004, 'timestamp': 1763019824.9060829, 'success': True}, {'task_id': 66, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.2222025394439697, 'timestamp': 1763019418.360113, 'success': True}, {'task_id': 194, 'url': 'https://httpbin.org/status/200', 'status': 502, 'duration': 1.8418607711791992, 'timestamp': 1763019505.396906, 'success': True}, {'task_id': 280, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.5319902896881104, 'timestamp': 1763019557.8751714, 'success': True}, {'task_id': 366, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.3834733963012695, 'timestamp': 1763019604.5784097, 'success': True}, {'task_id': 494, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.7016918659210205, 'timestamp': 1763019693.0443397, 'success': True}, {'task_id': 536, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.744256258010864, 'success': False}, {'task_id': 668, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.3180465698242188, 'timestamp': 1763019798.210489, 'success': True}, {'task_id': 757, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 4.3974316120147705, 'timestamp': 1763019851.348704, 'success': True}, {'task_id': 408, 'url': 'https://httpbin.org/headers', 'error': '', 'duration': 5.792445182800293, 'success': False}, {'task_id': 714, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.8411288261413574, 'timestamp': 1763019825.10496, 'success': True}, {'task_id': 67, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.020453929901123, 'timestamp': 1763019419.5070863, 'success': True}, {'task_id': 195, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 5.165369272232056, 'timestamp': 1763019509.9615426, 'success': True}, {'task_id': 281, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 4.558160305023193, 'timestamp': 1763019561.1787758, 'success': True}, {'task_id': 367, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.925252914428711, 'success': False}, {'task_id': 495, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.1469340324401855, 'timestamp': 1763019690.1939945, 'success': True}, {'task_id': 537, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 0.6893947124481201, 'timestamp': 1763019715.7169385, 'success': True}, {'task_id': 669, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.220466375350952, 'timestamp': 1763019798.5937326, 'success': True}, {'task_id': 758, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.131452798843384, 'success': False}, {'task_id': 239, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.653109550476074, 'timestamp': 1763019534.15621, 'success': True}, {'task_id': 409, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.1942551136016846, 'timestamp': 1763019634.9318695, 'success': True}, {'task_id': 715, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.695680856704712, 'timestamp': 1763019825.248531, 'success': True}, {'task_id': 68, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.3333795070648193, 'timestamp': 1763019419.844553, 'success': True}, {'task_id': 196, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.587738037109375, 'timestamp': 1763019507.984644, 'success': True}, {'task_id': 282, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.7114603519439697, 'timestamp': 1763019559.2046697, 'success': True}, {'task_id': 368, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.935047149658203, 'timestamp': 1763019607.6890922, 'success': True}, {'task_id': 496, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.2893638610839844, 'timestamp': 1763019691.6883144, 'success': True}, {'task_id': 538, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.9983420372009277, 'timestamp': 1763019717.716278, 'success': True}, {'task_id': 670, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.965005874633789, 'timestamp': 1763019800.4289968, 'success': True}, {'task_id': 759, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.7209479808807373, 'timestamp': 1763019851.1280694, 'success': True}, {'task_id': 240, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.041881561279297, 'timestamp': 1763019535.1702838, 'success': True}, {'task_id': 410, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.2607898712158203, 'timestamp': 1763019636.5485854, 'success': True}, {'task_id': 716, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.019361972808838, 'timestamp': 1763019825.9254448, 'success': True}, {'task_id': 69, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.6527388095855713, 'timestamp': 1763019422.0128517, 'success': True}, {'task_id': 197, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.660954236984253, 'timestamp': 1763019507.0578601, 'success': True}, {'task_id': 283, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.9937121868133545, 'timestamp': 1763019558.4936914, 'success': True}, {'task_id': 369, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.193197011947632, 'timestamp': 1763019607.9466631, 'success': True}, {'task_id': 497, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.1776819229125977, 'timestamp': 1763019691.3716764, 'success': True}, {'task_id': 540, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.8230376243591309, 'timestamp': 1763019718.4314039, 'success': True}, {'task_id': 671, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 4.359139919281006, 'timestamp': 1763019800.8586087, 'success': True}, {'task_id': 241, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.4663238525390625, 'timestamp': 1763019532.7628531, 'success': True}, {'task_id': 411, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.9286596775054932, 'timestamp': 1763019634.9741166, 'success': True}, {'task_id': 717, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.4518160820007324, 'timestamp': 1763019826.556776, 'success': True}, {'task_id': 70, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.797389507293701, 'timestamp': 1763019423.8134394, 'success': True}, {'task_id': 198, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.8493995666503906, 'timestamp': 1763019510.8593776, 'success': True}, {'task_id': 284, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.631985664367676, 'success': False}, {'task_id': 370, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.130602121353149, 'success': False}, {'task_id': 498, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.785529375076294, 'timestamp': 1763019692.1572058, 'success': True}, {'task_id': 539, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.8831140995025635, 'timestamp': 1763019719.2734547, 'success': True}, {'task_id': 672, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.792084217071533, 'timestamp': 1763019802.0025733, 'success': True}, {'task_id': 242, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.5242352485656738, 'timestamp': 1763019533.1779852, 'success': True}, {'task_id': 412, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.7881972789764404, 'timestamp': 1763019638.721064, 'success': True}, {'task_id': 718, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.0228981971740723, 'timestamp': 1763019826.2714293, 'success': True}, {'task_id': 199, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.8171093463897705, 'timestamp': 1763019509.8761756, 'success': True}, {'task_id': 285, 'url': 'https://httpbin.org/user-agent', 'status': 502, 'duration': 3.2951483726501465, 'timestamp': 1763019561.7888398, 'success': True}, {'task_id': 371, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.4859676361083984, 'timestamp': 1763019610.1750598, 'success': True}, {'task_id': 541, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.9304614067077637, 'timestamp': 1763019719.6487827, 'success': True}, {'task_id': 673, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.0505471229553223, 'timestamp': 1763019800.6442797, 'success': True}, {'task_id': 243, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.0044281482696533, 'timestamp': 1763019535.7672813, 'success': True}, {'task_id': 413, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.4191310405731201, 'timestamp': 1763019636.3932476, 'success': True}, {'task_id': 719, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.9690043926239014, 'timestamp': 1763019827.235687, 'success': True}, {'task_id': 71, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.6600074768066406, 'timestamp': 1763019422.1670938, 'success': True}, {'task_id': 200, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.7409048080444336, 'timestamp': 1763019509.7266474, 'success': True}, {'task_id': 286, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.3435537815093994, 'timestamp': 1763019560.5482235, 'success': True}, {'task_id': 372, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.442018747329712, 'timestamp': 1763019610.388682, 'success': True}, {'task_id': 542, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.204866647720337, 'timestamp': 1763019720.637571, 'success': True}, {'task_id': 674, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.6012616157531738, 'timestamp': 1763019802.0302584, 'success': True}, {'task_id': 72, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.8175480365753174, 'timestamp': 1763019423.662101, 'success': True}, {'task_id': 244, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.9417052268981934, 'timestamp': 1763019537.1196904, 'success': True}, {'task_id': 414, 'url': 'https://httpbin.org/user-agent', 'error': '', 'duration': 5.1154303550720215, 'success': False}, {'task_id': 720, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.5559542179107666, 'timestamp': 1763019827.481399, 'success': True}, {'task_id': 201, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.8314833641052246, 'timestamp': 1763019511.5591311, 'success': True}, {'task_id': 287, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 5.1968841552734375, 'timestamp': 1763019565.7451077, 'success': True}, {'task_id': 373, 'url': 'https://httpbin.org/user-agent', 'error': '', 'duration': 5.338640451431274, 'success': False}, {'task_id': 500, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.9319183826446533, 'timestamp': 1763019695.6217766, 'success': True}, {'task_id': 543, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.9589409828186035, 'timestamp': 1763019722.2334847, 'success': True}, {'task_id': 675, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.3995516300201416, 'timestamp': 1763019804.0438313, 'success': True}, {'task_id': 73, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.4846198558807373, 'timestamp': 1763019422.4993427, 'success': True}, {'task_id': 245, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.5205588340759277, 'timestamp': 1763019535.6778612, 'success': True}, {'task_id': 415, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.5932908058166504, 'timestamp': 1763019638.1424134, 'success': True}, {'task_id': 501, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.8439972400665283, 'timestamp': 1763019695.0021942, 'success': True}, {'task_id': 721, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 0.9632253646850586, 'timestamp': 1763019827.2346547, 'success': True}, {'task_id': 74, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.7689855098724365, 'timestamp': 1763019424.9360793, 'success': True}, {'task_id': 202, 'url': 'https://httpbin.org/status/200', 'status': 502, 'duration': 1.1281824111938477, 'timestamp': 1763019511.0055816, 'success': True}, {'task_id': 288, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.325520038604736, 'success': False}, {'task_id': 374, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.7263786792755127, 'timestamp': 1763019611.1150606, 'success': True}, {'task_id': 544, 'url': 'https://httpbin.org/user-agent', 'error': '', 'duration': 5.8581461906433105, 'success': False}, {'task_id': 676, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.8001396656036377, 'timestamp': 1763019802.6587484, 'success': True}, {'task_id': 246, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.2240915298461914, 'timestamp': 1763019537.3943753, 'success': True}, {'task_id': 416, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.8619914054870605, 'timestamp': 1763019643.0044048, 'success': True}, {'task_id': 502, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.8221807479858398, 'timestamp': 1763019694.8665204, 'success': True}, {'task_id': 722, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.6353163719177246, 'timestamp': 1763019828.1920924, 'success': True}, {'task_id': 75, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.46131372451782227, 'timestamp': 1763019422.9617193, 'success': True}, {'task_id': 203, 'url': 'https://httpbin.org/user-agent', 'status': 502, 'duration': 0.3340492248535156, 'timestamp': 1763019510.2955918, 'success': True}, {'task_id': 289, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.0444135665893555, 'timestamp': 1763019564.8332534, 'success': True}, {'task_id': 375, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.6846601963043213, 'timestamp': 1763019612.1883228, 'success': True}, {'task_id': 545, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.0094358921051025, 'timestamp': 1763019722.5062044, 'success': True}, {'task_id': 677, 'url': 'https://httpbin.org/headers', 'error': '', 'duration': 5.504909515380859, 'success': False}, {'task_id': 247, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.6084089279174805, 'timestamp': 1763019537.2862701, 'success': True}, {'task_id': 417, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.1245083808898926, 'timestamp': 1763019639.6378427, 'success': True}, {'task_id': 503, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.45735764503479, 'timestamp': 1763019696.323878, 'success': True}, {'task_id': 723, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.7082138061523438, 'timestamp': 1763019829.9428685, 'success': True}, {'task_id': 76, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.315840005874634, 'timestamp': 1763019426.2775593, 'success': True}, {'task_id': 204, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.1881625652313232, 'timestamp': 1763019511.4837544, 'success': True}, {'task_id': 290, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.151792049407959, 'timestamp': 1763019565.6589491, 'success': True}, {'task_id': 376, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.0908915996551514, 'timestamp': 1763019612.2070365, 'success': True}, {'task_id': 546, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.8917772769927979, 'timestamp': 1763019721.5293484, 'success': True}, {'task_id': 678, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.6458120346069336, 'timestamp': 1763019805.6760705, 'success': True}, {'task_id': 248, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.658381462097168, 'timestamp': 1763019537.4270914, 'success': True}, {'task_id': 504, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.7034292221069336, 'timestamp': 1763019698.7056234, 'success': True}, {'task_id': 724, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.963420391082764, 'timestamp': 1763019832.1991074, 'success': True}, {'task_id': 77, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.4314689636230469, 'timestamp': 1763019425.09357, 'success': True}, {'task_id': 205, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.8122408390045166, 'timestamp': 1763019512.6716185, 'success': True}, {'task_id': 291, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.5881421566009521, 'timestamp': 1763019566.4233983, 'success': True}, {'task_id': 377, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.014864921569824, 'success': False}, {'task_id': 418, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.236415147781372, 'timestamp': 1763019640.9574792, 'success': True}, {'task_id': 547, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.628716230392456, 'timestamp': 1763019725.15906, 'success': True}, {'task_id': 679, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.4832515716552734, 'timestamp': 1763019805.142, 'success': True}, {'task_id': 249, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.3012425899505615, 'timestamp': 1763019540.420933, 'success': True}, {'task_id': 419, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.246814250946045, 'timestamp': 1763019641.8856926, 'success': True}, {'task_id': 505, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.3014976978302002, 'timestamp': 1763019696.668553, 'success': True}, {'task_id': 725, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.7028725147247314, 'timestamp': 1763019831.1842716, 'success': True}, {'task_id': 78, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.861539125442505, 'timestamp': 1763019426.6749785, 'success': True}, {'task_id': 206, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.5112028121948242, 'timestamp': 1763019512.5167844, 'success': True}, {'task_id': 292, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.7044939994812012, 'timestamp': 1763019567.3634431, 'success': True}, {'task_id': 378, 'url': 'https://httpbin.org/status/200', 'error': '', 'duration': 5.325014591217041, 'success': False}, {'task_id': 548, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.757627010345459, 'timestamp': 1763019723.9911118, 'success': True}, {'task_id': 680, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.719165325164795, 'timestamp': 1763019806.7629967, 'success': True}, {'task_id': 726, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.9030940532684326, 'timestamp': 1763019829.0951865, 'success': True}, {'task_id': 506, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.5555784702301025, 'timestamp': 1763019698.177355, 'success': True}, {'task_id': 250, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.3086583614349365, 'timestamp': 1763019538.5949285, 'success': True}, {'task_id': 420, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.9308044910430908, 'timestamp': 1763019642.8882837, 'success': True}, {'task_id': 79, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.606220245361328, 'timestamp': 1763019428.543316, 'success': True}, {'task_id': 207, 'url': 'https://httpbin.org/status/200', 'status': 502, 'duration': 0.5221855640411377, 'timestamp': 1763019512.00594, 'success': True}, {'task_id': 293, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.9907894134521484, 'timestamp': 1763019567.735897, 'success': True}, {'task_id': 379, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.4378011226654053, 'timestamp': 1763019613.6448376, 'success': True}, {'task_id': 549, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.545881748199463, 'timestamp': 1763019727.052086, 'success': True}, {'task_id': 681, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.3937757015228271, 'timestamp': 1763019806.5357757, 'success': True}, {'task_id': 251, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.5463206768035889, 'timestamp': 1763019538.940696, 'success': True}, {'task_id': 421, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.784623146057129, 'timestamp': 1763019645.293301, 'success': True}, {'task_id': 507, 'url': 'https://httpbin.org/get', 'error': '', 'duration': 5.185046195983887, 'success': False}, {'task_id': 727, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.4319944381713867, 'timestamp': 1763019831.5281801, 'success': True}, {'task_id': 80, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.0405926704406738, 'timestamp': 1763019426.1341627, 'success': True}, {'task_id': 208, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.8193814754486084, 'timestamp': 1763019513.3785126, 'success': True}, {'task_id': 294, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.419828176498413, 'timestamp': 1763019567.8432264, 'success': True}, {'task_id': 380, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 5.584941148757935, 'timestamp': 1763019619.2297788, 'success': True}, {'task_id': 550, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.657604455947876, 'timestamp': 1763019724.6497016, 'success': True}, {'task_id': 252, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.937063694000244, 'timestamp': 1763019540.364155, 'success': True}, {'task_id': 422, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.1174118518829346, 'timestamp': 1763019644.0031044, 'success': True}, {'task_id': 508, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.842977523803711, 'timestamp': 1763019699.5125303, 'success': True}, {'task_id': 684, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.5183475017547607, 'timestamp': 1763019809.2823453, 'success': True}, {'task_id': 728, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.7984988689422607, 'timestamp': 1763019831.7413673, 'success': True}, {'task_id': 81, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.627811908721924, 'timestamp': 1763019429.7631557, 'success': True}, {'task_id': 209, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.387385129928589, 'timestamp': 1763019514.393325, 'success': True}, {'task_id': 295, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.0730228424072266, 'timestamp': 1763019568.580114, 'success': True}, {'task_id': 551, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.9968056678771973, 'timestamp': 1763019725.6465073, 'success': True}, {'task_id': 253, 'url': 'https://httpbin.org/user-agent', 'error': '', 'duration': 5.911634683609009, 'success': False}, {'task_id': 383, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.9955291748046875, 'success': False}, {'task_id': 423, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.3195557594299316, 'timestamp': 1763019646.2078395, 'success': True}, {'task_id': 685, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.8466823101043701, 'timestamp': 1763019808.804207, 'success': True}, {'task_id': 729, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.6508922576904297, 'timestamp': 1763019834.8351638, 'success': True}, {'task_id': 82, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.6669387817382812, 'timestamp': 1763019427.944498, 'success': True}, {'task_id': 210, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.0651183128356934, 'timestamp': 1763019513.5819027, 'success': True}, {'task_id': 296, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 4.814619541168213, 'timestamp': 1763019572.1780627, 'success': True}, {'task_id': 509, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.3849928379058838, 'timestamp': 1763019699.562348, 'success': True}, {'task_id': 552, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.18328857421875, 'timestamp': 1763019728.343336, 'success': True}, {'task_id': 254, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.4075875282287598, 'timestamp': 1763019540.3482835, 'success': True}, {'task_id': 424, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 0.7071092128753662, 'timestamp': 1763019643.711514, 'success': True}, {'task_id': 438, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.17492413520813, 'timestamp': 1763019652.5567338, 'success': True}, {'task_id': 510, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.2096333503723145, 'timestamp': 1763019699.9152567, 'success': True}, {'task_id': 686, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 6.007812738418579, 'success': False}, {'task_id': 730, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.554419755935669, 'timestamp': 1763019833.0825999, 'success': True}, {'task_id': 83, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.7143683433532715, 'timestamp': 1763019428.3893468, 'success': True}, {'task_id': 211, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.9760661125183105, 'timestamp': 1763019515.6476846, 'success': True}, {'task_id': 297, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.99916672706604, 'timestamp': 1763019571.7350638, 'success': True}, {'task_id': 553, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.815978527069092, 'timestamp': 1763019729.3239002, 'success': True}, {'task_id': 255, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.0374855995178223, 'timestamp': 1763019542.3857691, 'success': True}, {'task_id': 425, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.1115384101867676, 'timestamp': 1763019645.8230524, 'success': True}, {'task_id': 511, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 0.6053564548492432, 'timestamp': 1763019700.1178868, 'success': True}, {'task_id': 687, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.251465320587158, 'timestamp': 1763019811.275975, 'success': True}, {'task_id': 731, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.6302356719970703, 'timestamp': 1763019834.371603, 'success': True}, {'task_id': 84, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.3233208656311035, 'timestamp': 1763019430.267819, 'success': True}, {'task_id': 212, 'url': 'https://httpbin.org/status/200', 'status': 502, 'duration': 1.0287439823150635, 'timestamp': 1763019514.4072566, 'success': True}, {'task_id': 298, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.4234797954559326, 'timestamp': 1763019569.2667062, 'success': True}, {'task_id': 399, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.3968019485473633, 'timestamp': 1763019629.9003394, 'success': True}, {'task_id': 554, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 4.007911443710327, 'timestamp': 1763019729.6554122, 'success': True}, {'task_id': 256, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.139366626739502, 'success': False}, {'task_id': 426, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.1588525772094727, 'timestamp': 1763019645.161957, 'success': True}, {'task_id': 512, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.9823846817016602, 'timestamp': 1763019701.5447326, 'success': True}, {'task_id': 688, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.49060559272766113, 'timestamp': 1763019809.2948127, 'success': True}, {'task_id': 732, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.5545780658721924, 'timestamp': 1763019834.7536855, 'success': True}, {'task_id': 213, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.1605560779571533, 'timestamp': 1763019516.7424588, 'success': True}, {'task_id': 85, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.5998480319976807, 'timestamp': 1763019430.9891949, 'success': True}, {'task_id': 299, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.9902074337005615, 'timestamp': 1763019569.5703213, 'success': True}, {'task_id': 384, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.495243549346924, 'timestamp': 1763019621.2023907, 'success': True}, {'task_id': 555, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.1857972145080566, 'timestamp': 1763019730.2378833, 'success': True}, {'task_id': 257, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 0.26613688468933105, 'timestamp': 1763019540.68707, 'success': True}, {'task_id': 427, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.7680313587188721, 'timestamp': 1763019645.9299884, 'success': True}, {'task_id': 513, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.502720832824707, 'timestamp': 1763019701.4189608, 'success': True}, {'task_id': 689, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.5637457370758057, 'timestamp': 1763019810.846091, 'success': True}, {'task_id': 733, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.2838666439056396, 'timestamp': 1763019835.3664665, 'success': True}, {'task_id': 86, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.3431153297424316, 'timestamp': 1763019430.8864312, 'success': True}, {'task_id': 214, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.8289167881011963, 'timestamp': 1763019516.2232451, 'success': True}, {'task_id': 300, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.308558464050293, 'timestamp': 1763019571.5752647, 'success': True}, {'task_id': 385, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.490039587020874, 'timestamp': 1763019622.7208612, 'success': True}, {'task_id': 556, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.2602734565734863, 'timestamp': 1763019730.6056018, 'success': True}, {'task_id': 258, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.6039762496948242, 'timestamp': 1763019541.2910461, 'success': True}, {'task_id': 428, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.7508556842803955, 'timestamp': 1763019647.0441568, 'success': True}, {'task_id': 514, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.8077743053436279, 'timestamp': 1763019700.925661, 'success': True}, {'task_id': 734, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.1826205253601074, 'timestamp': 1763019835.5542235, 'success': True}, {'task_id': 87, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.9955732822418213, 'timestamp': 1763019433.758729, 'success': True}, {'task_id': 215, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.731982469558716, 'timestamp': 1763019519.139239, 'success': True}, {'task_id': 301, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.2483892440795898, 'timestamp': 1763019570.8198488, 'success': True}, {'task_id': 386, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.9293060302734375, 'timestamp': 1763019622.1316967, 'success': True}, {'task_id': 557, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.6003973484039307, 'timestamp': 1763019732.9242976, 'success': True}, {'task_id': 692, 'url': 'https://httpbin.org/delay/1', 'status': 502, 'duration': 1.4692013263702393, 'timestamp': 1763019812.7451763, 'success': True}, {'task_id': 259, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.163271188735962, 'timestamp': 1763019544.4566038, 'success': True}, {'task_id': 515, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.68853497505188, 'timestamp': 1763019703.6160085, 'success': True}, {'task_id': 735, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.2666635513305664, 'timestamp': 1763019836.021314, 'success': True}, {'task_id': 88, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.1579031944274902, 'timestamp': 1763019432.4257221, 'success': True}, {'task_id': 216, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.5513033866882324, 'timestamp': 1763019517.2006772, 'success': True}, {'task_id': 302, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.8927998542785645, 'timestamp': 1763019574.7126486, 'success': True}, {'task_id': 387, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.9571664333343506, 'timestamp': 1763019623.0888631, 'success': True}, {'task_id': 450, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 5.063689947128296, 'timestamp': 1763019661.1270564, 'success': True}, {'task_id': 558, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.598895788192749, 'timestamp': 1763019730.254308, 'success': True}, {'task_id': 693, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.6541261672973633, 'timestamp': 1763019813.3017151, 'success': True}, {'task_id': 260, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.2580060958862305, 'timestamp': 1763019545.6437752, 'success': True}, {'task_id': 516, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.423560857772827, 'timestamp': 1763019704.8425217, 'success': True}, {'task_id': 690, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.1257853507995605, 'timestamp': 1763019812.420598, 'success': True}, {'task_id': 736, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.855839729309082, 'timestamp': 1763019837.6910036, 'success': True}, {'task_id': 89, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 5.51270866394043, 'timestamp': 1763019436.39914, 'success': True}, {'task_id': 217, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 4.570875644683838, 'timestamp': 1763019520.7941208, 'success': True}, {'task_id': 303, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.0794970989227295, 'timestamp': 1763019572.6547618, 'success': True}, {'task_id': 388, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.5381648540496826, 'timestamp': 1763019624.0485568, 'success': True}, {'task_id': 559, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.883995294570923, 'timestamp': 1763019734.1218786, 'success': True}, {'task_id': 694, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.436946153640747, 'timestamp': 1763019813.8590052, 'success': True}, {'task_id': 261, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.750558376312256, 'timestamp': 1763019547.2082462, 'success': True}, {'task_id': 430, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.489989995956421, 'timestamp': 1763019647.4199784, 'success': True}, {'task_id': 517, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.984926700592041, 'success': False}, {'task_id': 737, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.4527246952056885, 'timestamp': 1763019836.8191912, 'success': True}, {'task_id': 90, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.4915966987609863, 'timestamp': 1763019434.4807916, 'success': True}, {'task_id': 218, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.871481418609619, 'timestamp': 1763019519.6139402, 'success': True}, {'task_id': 304, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.5518887042999268, 'timestamp': 1763019572.2869525, 'success': True}, {'task_id': 389, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.4462738037109375, 'timestamp': 1763019624.167135, 'success': True}, {'task_id': 560, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.4468352794647217, 'timestamp': 1763019733.7011433, 'success': True}, {'task_id': 695, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.6188421249389648, 'timestamp': 1763019813.3640184, 'success': True}, {'task_id': 262, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.384284734725952, 'timestamp': 1763019546.890848, 'success': True}, {'task_id': 431, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.761300802230835, 'timestamp': 1763019649.9711454, 'success': True}, {'task_id': 518, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.6360266208648682, 'timestamp': 1763019703.1807592, 'success': True}, {'task_id': 738, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.6117799282073975, 'timestamp': 1763019839.1660035, 'success': True}, {'task_id': 91, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.2579243183135986, 'timestamp': 1763019435.6836464, 'success': True}, {'task_id': 219, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.4286177158355713, 'timestamp': 1763019519.6292949, 'success': True}, {'task_id': 305, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.6928956508636475, 'timestamp': 1763019574.8720481, 'success': True}, {'task_id': 390, 'url': 'https://httpbin.org/user-agent', 'error': '', 'duration': 5.414674282073975, 'success': False}, {'task_id': 561, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.493222951889038, 'timestamp': 1763019733.0988247, 'success': True}, {'task_id': 696, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.5118343830108643, 'timestamp': 1763019814.8135495, 'success': True}, {'task_id': 263, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.756312370300293, 'timestamp': 1763019548.259834, 'success': True}, {'task_id': 432, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.0761241912841797, 'timestamp': 1763019649.120281, 'success': True}, {'task_id': 92, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.5038280487060547, 'timestamp': 1763019436.262557, 'success': True}, {'task_id': 220, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.8502998352050781, 'timestamp': 1763019520.989539, 'success': True}, {'task_id': 306, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.3729774951934814, 'timestamp': 1763019574.661957, 'success': True}, {'task_id': 391, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.3165860176086426, 'timestamp': 1763019624.8254526, 'success': True}, {'task_id': 519, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.845390558242798, 'timestamp': 1763019708.0276015, 'success': True}, {'task_id': 562, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.5410351753234863, 'timestamp': 1763019734.466606, 'success': True}, {'task_id': 697, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.46990251541137695, 'timestamp': 1763019813.833921, 'success': True}, {'task_id': 264, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.515202522277832, 'timestamp': 1763019548.1589777, 'success': True}, {'task_id': 433, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.985112190246582, 'timestamp': 1763019648.4050906, 'success': True}, {'task_id': 520, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.3164756298065186, 'timestamp': 1763019705.9335344, 'success': True}, {'task_id': 741, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.6149134635925293, 'timestamp': 1763019839.305917, 'success': True}, {'task_id': 93, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.8584198951721191, 'timestamp': 1763019435.3392115, 'success': True}, {'task_id': 221, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.7471888065338135, 'timestamp': 1763019522.3622978, 'success': True}, {'task_id': 307, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.2408998012542725, 'timestamp': 1763019574.8956616, 'success': True}, {'task_id': 392, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.550180435180664, 'timestamp': 1763019626.5997384, 'success': True}, {'task_id': 563, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.3186705112457275, 'timestamp': 1763019734.4194999, 'success': True}, {'task_id': 698, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.1091535091400146, 'timestamp': 1763019815.6254613, 'success': True}, {'task_id': 265, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.4270949363708496, 'timestamp': 1763019547.3179429, 'success': True}, {'task_id': 434, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.049597501754761, 'timestamp': 1763019652.454688, 'success': True}, {'task_id': 521, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.6501963138580322, 'timestamp': 1763019707.4937623, 'success': True}, {'task_id': 742, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.9928202629089355, 'timestamp': 1763019839.70093, 'success': True}, {'task_id': 94, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.844191312789917, 'timestamp': 1763019437.1834028, 'success': True}, {'task_id': 222, 'url': 'https://httpbin.org/get', 'status': 502, 'duration': 2.137529134750366, 'timestamp': 1763019521.7679, 'success': True}, {'task_id': 308, 'url': 'https://httpbin.org/get', 'status': 502, 'duration': 1.9711084365844727, 'timestamp': 1763019576.6330655, 'success': True}, {'task_id': 393, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.3890326023101807, 'timestamp': 1763019627.5561676, 'success': True}, {'task_id': 564, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.5342371463775635, 'timestamp': 1763019734.2353804, 'success': True}, {'task_id': 699, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.0554444789886475, 'timestamp': 1763019814.8893654, 'success': True}, {'task_id': 266, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.8265855312347412, 'timestamp': 1763019549.0348318, 'success': True}, {'task_id': 435, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.0347578525543213, 'timestamp': 1763019650.1550388, 'success': True}, {'task_id': 522, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.723100423812866, 'timestamp': 1763019708.6566348, 'success': True}, {'task_id': 743, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 0.5067522525787354, 'timestamp': 1763019839.6727557, 'success': True}, {'task_id': 95, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.582280397415161, 'timestamp': 1763019439.2670145, 'success': True}, {'task_id': 223, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.598581075668335, 'timestamp': 1763019522.3937225, 'success': True}, {'task_id': 309, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.8736672401428223, 'timestamp': 1763019577.5863159, 'success': True}, {'task_id': 394, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.6918973922729492, 'timestamp': 1763019625.51735, 'success': True}, {'task_id': 565, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.1974329948425293, 'timestamp': 1763019735.3193116, 'success': True}, {'task_id': 700, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.8468265533447266, 'timestamp': 1763019814.7058318, 'success': True}, {'task_id': 267, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.1991798877716064, 'success': False}, {'task_id': 436, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.5087742805480957, 'timestamp': 1763019651.4799197, 'success': True}, {'task_id': 523, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.5534729957580566, 'timestamp': 1763019710.0493686, 'success': True}, {'task_id': 744, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.134394884109497, 'timestamp': 1763019843.440312, 'success': True}, {'task_id': 96, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.6502134799957275, 'timestamp': 1763019438.914324, 'success': True}, {'task_id': 224, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.255868911743164, 'timestamp': 1763019522.2454078, 'success': True}, {'task_id': 310, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.175026178359985, 'timestamp': 1763019579.0480704, 'success': True}, {'task_id': 395, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.4188292026519775, 'timestamp': 1763019627.9361792, 'success': True}, {'task_id': 566, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.261020183563232, 'success': False}, {'task_id': 701, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.8243350982666016, 'timestamp': 1763019818.5301669, 'success': True}, {'task_id': 268, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.013402700424194, 'timestamp': 1763019552.1723804, 'success': True}, {'task_id': 437, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.3904352188110352, 'timestamp': 1763019651.545474, 'success': True}, {'task_id': 524, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.020795583724976, 'success': False}, {'task_id': 745, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.7755017280578613, 'timestamp': 1763019842.089312, 'success': True}, {'task_id': 97, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 4.472340106964111, 'timestamp': 1763019440.8726199, 'success': True}, {'task_id': 225, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 5.164419412612915, 'timestamp': 1763019526.9323194, 'success': True}, {'task_id': 311, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.614648103713989, 'success': False}, {'task_id': 567, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.662919521331787, 'timestamp': 1763019736.0824194, 'success': True}, {'task_id': 682, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.34643816947937, 'timestamp': 1763019808.0225086, 'success': True}, {'task_id': 702, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.6793220043182373, 'timestamp': 1763019816.4928715, 'success': True}, {'task_id': 269, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.576239824295044, 'timestamp': 1763019549.8360739, 'success': True}, {'task_id': 439, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.5987694263458252, 'timestamp': 1763019653.078689, 'success': True}, {'task_id': 525, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.8029060363769531, 'timestamp': 1763019709.8305075, 'success': True}, {'task_id': 739, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.2924964427948, 'timestamp': 1763019839.3138103, 'success': True}, {'task_id': 746, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.5767157077789307, 'timestamp': 1763019841.2494714, 'success': True}, {'task_id': 98, 'url': 'https://httpbin.org/get', 'status': 502, 'duration': 0.5649120807647705, 'timestamp': 1763019437.7483149, 'success': True}, {'task_id': 226, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.068025827407837, 'timestamp': 1763019525.3134336, 'success': True}, {'task_id': 312, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.421557664871216, 'timestamp': 1763019579.0546231, 'success': True}, {'task_id': 398, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.2908754348754883, 'timestamp': 1763019629.2270546, 'success': True}, {'task_id': 568, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.9862635135650635, 'timestamp': 1763019737.4528694, 'success': True}, {'task_id': 703, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.4156055450439453, 'timestamp': 1763019817.304971, 'success': True}, {'task_id': 270, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 4.307331800460815, 'timestamp': 1763019553.3434336, 'success': True}, {'task_id': 526, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.9054806232452393, 'timestamp': 1763019710.5631084, 'success': True}, {'task_id': 747, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 0.7061543464660645, 'timestamp': 1763019840.4070845, 'success': True}, {'task_id': 99, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.868579149246216, 'timestamp': 1763019441.616894, 'success': True}, {'task_id': 227, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.9182188510894775, 'timestamp': 1763019524.2805166, 'success': True}, {'task_id': 313, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.5879096984863281, 'timestamp': 1763019578.1742256, 'success': True}, {'task_id': 440, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.639676332473755, 'timestamp': 1763019654.1851504, 'success': True}, {'task_id': 569, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.6072378158569336, 'timestamp': 1763019737.9276574, 'success': True}, {'task_id': 704, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.221542119979858, 'timestamp': 1763019819.848005, 'success': True}, {'task_id': 271, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.35595703125, 'timestamp': 1763019551.192031, 'success': True}, {'task_id': 527, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.309440851211548, 'timestamp': 1763019712.1399484, 'success': True}, {'task_id': 748, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.6188991069793701, 'timestamp': 1763019842.0259836, 'success': True}, {'task_id': 314, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.779820442199707, 'timestamp': 1763019579.954046, 'success': True}, {'task_id': 16, 'url': 'https://httpbin.org/status/200', 'error': '', 'duration': 5.571385383605957, 'success': False}, {'task_id': 100, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.536005020141602, 'timestamp': 1763019443.450329, 'success': True}, {'task_id': 143, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.631051778793335, 'timestamp': 1763019474.5703542, 'success': True}, {'task_id': 441, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.2198941707611084, 'timestamp': 1763019653.6745822, 'success': True}, {'task_id': 570, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.690565824508667, 'timestamp': 1763019736.7734625, 'success': True}, {'task_id': 616, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 4.519439935684204, 'timestamp': 1763019764.431742, 'success': True}, {'task_id': 17, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 0.9419798851013184, 'timestamp': 1763019388.5933027, 'success': True}, {'task_id': 144, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.4868276119232178, 'timestamp': 1763019474.7179391, 'success': True}, {'task_id': 101, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 4.170681953430176, 'timestamp': 1763019443.4376965, 'success': True}, {'task_id': 315, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.2697443962097168, 'timestamp': 1763019580.3178148, 'success': True}, {'task_id': 442, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.45854663848876953, 'timestamp': 1763019653.0152805, 'success': True}, {'task_id': 571, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.0083181858062744, 'timestamp': 1763019737.7817807, 'success': True}, {'task_id': 617, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.809013843536377, 'timestamp': 1763019763.0104506, 'success': True}, {'task_id': 18, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.094611883163452, 'timestamp': 1763019391.6879146, 'success': True}, {'task_id': 102, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 5.207402944564819, 'timestamp': 1763019446.081073, 'success': True}, {'task_id': 145, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.7198948860168457, 'timestamp': 1763019475.6468017, 'success': True}, {'task_id': 316, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.2408573627471924, 'timestamp': 1763019580.2954805, 'success': True}, {'task_id': 443, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.4789717197418213, 'timestamp': 1763019655.4942522, 'success': True}, {'task_id': 572, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.4802782535552979, 'timestamp': 1763019738.9331477, 'success': True}, {'task_id': 618, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.897939920425415, 'timestamp': 1763019765.4593737, 'success': True}, {'task_id': 19, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.584780216217041, 'timestamp': 1763019390.1790752, 'success': True}, {'task_id': 103, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.346928119659424, 'timestamp': 1763019443.9638221, 'success': True}, {'task_id': 146, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.5317301750183105, 'timestamp': 1763019476.1032677, 'success': True}, {'task_id': 317, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.5926494598388672, 'timestamp': 1763019581.5466955, 'success': True}, {'task_id': 444, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 0.6640386581420898, 'timestamp': 1763019653.7427278, 'success': True}, {'task_id': 573, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.5707271099090576, 'timestamp': 1763019741.3525078, 'success': True}, {'task_id': 619, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.9513089656829834, 'timestamp': 1763019765.9617596, 'success': True}, {'task_id': 104, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.2095870971679688, 'timestamp': 1763019444.6472836, 'success': True}, {'task_id': 147, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.829594612121582, 'timestamp': 1763019478.5475338, 'success': True}, {'task_id': 318, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.585585594177246, 'timestamp': 1763019582.8825715, 'success': True}, {'task_id': 445, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.388784170150757, 'timestamp': 1763019656.0633664, 'success': True}, {'task_id': 574, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.501382827758789, 'timestamp': 1763019739.4301012, 'success': True}, {'task_id': 579, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.6929316520690918, 'timestamp': 1763019742.1003807, 'success': True}, {'task_id': 620, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.8337721824645996, 'timestamp': 1763019766.407666, 'success': True}, {'task_id': 641, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.3524038791656494, 'timestamp': 1763019777.7713082, 'success': True}, {'task_id': 105, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.5941340923309326, 'timestamp': 1763019445.0444632, 'success': True}, {'task_id': 476, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.715710163116455, 'timestamp': 1763019674.8545866, 'success': True}, {'task_id': 148, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.3044805526733398, 'timestamp': 1763019476.9512823, 'success': True}, {'task_id': 319, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.505791664123535, 'timestamp': 1763019583.8236065, 'success': True}, {'task_id': 448, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.4776761531829834, 'timestamp': 1763019658.6233087, 'success': True}, {'task_id': 575, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.3663737773895264, 'timestamp': 1763019740.2995214, 'success': True}, {'task_id': 621, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.1702258586883545, 'timestamp': 1763019765.6029203, 'success': True}, {'task_id': 106, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 5.126915216445923, 'timestamp': 1763019449.0907373, 'success': True}, {'task_id': 149, 'url': 'https://httpbin.org/user-agent', 'error': '', 'duration': 5.6660566329956055, 'success': False}, {'task_id': 320, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.6041483879089355, 'timestamp': 1763019584.1154976, 'success': True}, {'task_id': 455, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.5269017219543457, 'timestamp': 1763019663.2856226, 'success': True}, {'task_id': 576, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.9762842655181885, 'timestamp': 1763019740.4063854, 'success': True}, {'task_id': 622, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.5990586280822754, 'timestamp': 1763019766.0597236, 'success': True}, {'task_id': 107, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 4.181019306182861, 'timestamp': 1763019448.8283029, 'success': True}, {'task_id': 150, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.350898027420044, 'timestamp': 1763019479.4551637, 'success': True}, {'task_id': 321, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.8083915710449219, 'timestamp': 1763019583.355087, 'success': True}, {'task_id': 466, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.999495267868042, 'timestamp': 1763019669.4437432, 'success': True}, {'task_id': 577, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.691776752471924, 'timestamp': 1763019742.1881773, 'success': True}, {'task_id': 623, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 4.635027885437012, 'timestamp': 1763019770.2389219, 'success': True}, {'task_id': 47, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.757290840148926, 'timestamp': 1763019407.8020473, 'success': True}, {'task_id': 20, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.1498665809631348, 'timestamp': 1763019391.0348203, 'success': True}, {'task_id': 108, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.003282308578491, 'timestamp': 1763019447.0477455, 'success': True}, {'task_id': 151, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.5726876258850098, 'timestamp': 1763019478.52397, 'success': True}, {'task_id': 322, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.100691795349121, 'timestamp': 1763019584.9832633, 'success': True}, {'task_id': 578, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.0237619876861572, 'timestamp': 1763019742.3240204, 'success': True}, {'task_id': 624, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.07254958152771, 'timestamp': 1763019769.0363064, 'success': True}, {'task_id': 449, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 1.778393030166626, 'timestamp': 1763019657.2726452, 'success': True}, {'task_id': 109, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 0.9164841175079346, 'timestamp': 1763019446.9975572, 'success': True}, {'task_id': 152, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.074000358581543, 'timestamp': 1763019480.5979702, 'success': True}, {'task_id': 323, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.7430517673492432, 'timestamp': 1763019585.0981388, 'success': True}, {'task_id': 580, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.9376866817474365, 'timestamp': 1763019744.2901945, 'success': True}, {'task_id': 625, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.0816385746002197, 'timestamp': 1763019768.1413622, 'success': True}, {'task_id': 22, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.7484302520751953, 'timestamp': 1763019391.7846692, 'success': True}, {'task_id': 110, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.512650728225708, 'success': False}, {'task_id': 153, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.443420648574829, 'timestamp': 1763019479.9909544, 'success': True}, {'task_id': 324, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.6573126316070557, 'timestamp': 1763019584.4809191, 'success': True}, {'task_id': 581, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 4.0817482471466064, 'timestamp': 1763019746.1831207, 'success': True}, {'task_id': 626, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.177811861038208, 'timestamp': 1763019768.5854778, 'success': True}, {'task_id': 23, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.6634485721588135, 'timestamp': 1763019393.3513632, 'success': True}, {'task_id': 451, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.5423247814178467, 'timestamp': 1763019657.7908385, 'success': True}, {'task_id': 111, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.3844127655029297, 'timestamp': 1763019449.4332159, 'success': True}, {'task_id': 154, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.3629512786865234, 'timestamp': 1763019481.8194623, 'success': True}, {'task_id': 325, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.205319881439209, 'timestamp': 1763019586.3208175, 'success': True}, {'task_id': 397, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 4.2273008823394775, 'timestamp': 1763019631.7834685, 'success': True}, {'task_id': 452, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.487196207046509, 'timestamp': 1763019659.7598414, 'success': True}, {'task_id': 627, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.5955924987792969, 'timestamp': 1763019769.7379646, 'success': True}, {'task_id': 24, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 5.078053951263428, 'timestamp': 1763019396.862723, 'success': True}, {'task_id': 584, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.3641457557678223, 'timestamp': 1763019745.3996565, 'success': True}, {'task_id': 112, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.8222086429595947, 'timestamp': 1763019452.6505115, 'success': True}, {'task_id': 155, 'url': 'https://httpbin.org/delay/1', 'status': 502, 'duration': 0.8816657066345215, 'timestamp': 1763019480.87262, 'success': True}, {'task_id': 326, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.1789283752441406, 'timestamp': 1763019585.660834, 'success': True}, {'task_id': 453, 'url': 'https://httpbin.org/get', 'status': 502, 'duration': 1.966620683670044, 'timestamp': 1763019659.7574592, 'success': True}, {'task_id': 628, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.6413514614105225, 'timestamp': 1763019770.2268293, 'success': True}, {'task_id': 585, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 0.4105367660522461, 'timestamp': 1763019744.7007313, 'success': True}, {'task_id': 113, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.7026493549346924, 'timestamp': 1763019450.7944412, 'success': True}, {'task_id': 156, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.5295417308807373, 'timestamp': 1763019483.1291034, 'success': True}, {'task_id': 327, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.063966989517212, 'timestamp': 1763019588.0472302, 'success': True}, {'task_id': 454, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.477292537689209, 'timestamp': 1763019661.1006012, 'success': True}, {'task_id': 629, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.054738759994507, 'timestamp': 1763019772.0910451, 'success': True}, {'task_id': 26, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.7148008346557617, 'timestamp': 1763019396.6191442, 'success': True}, {'task_id': 456, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.3243324756622314, 'timestamp': 1763019661.084174, 'success': True}, {'task_id': 586, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.9230685234069824, 'timestamp': 1763019745.6237998, 'success': True}, {'task_id': 114, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.3047940731048584, 'timestamp': 1763019452.73801, 'success': True}, {'task_id': 157, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.00628662109375, 'timestamp': 1763019482.8789067, 'success': True}, {'task_id': 328, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.9085028171539307, 'timestamp': 1763019586.0066416, 'success': True}, {'task_id': 630, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.7904295921325684, 'timestamp': 1763019771.5295074, 'success': True}, {'task_id': 457, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.7338275909423828, 'timestamp': 1763019661.8180015, 'success': True}, {'task_id': 587, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.647197961807251, 'timestamp': 1763019747.3906348, 'success': True}, {'task_id': 28, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.850085973739624, 'timestamp': 1763019396.7678661, 'success': True}, {'task_id': 115, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 5.190742015838623, 'timestamp': 1763019455.986174, 'success': True}, {'task_id': 158, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.0582563877105713, 'timestamp': 1763019482.5667655, 'success': True}, {'task_id': 329, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.8931539058685303, 'timestamp': 1763019588.553988, 'success': True}, {'task_id': 631, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.2810652256011963, 'timestamp': 1763019773.5078945, 'success': True}, {'task_id': 458, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.4668943881988525, 'timestamp': 1763019662.5674956, 'success': True}, {'task_id': 588, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.407360315322876, 'timestamp': 1763019746.8070168, 'success': True}, {'task_id': 116, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.809746265411377, 'timestamp': 1763019456.3214767, 'success': True}, {'task_id': 159, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.878138542175293, 'timestamp': 1763019485.6976008, 'success': True}, {'task_id': 330, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.511136531829834, 'timestamp': 1763019587.5177782, 'success': True}, {'task_id': 632, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.696934461593628, 'timestamp': 1763019772.9358563, 'success': True}, {'task_id': 30, 'url': 'https://httpbin.org/delay/1', 'status': 502, 'duration': 1.6330053806304932, 'timestamp': 1763019397.4644778, 'success': True}, {'task_id': 459, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.8780877590179443, 'timestamp': 1763019663.0056856, 'success': True}, {'task_id': 589, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.5045113563537598, 'timestamp': 1763019748.1291418, 'success': True}, {'task_id': 31, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.8880021572113037, 'timestamp': 1763019399.5082476, 'success': True}, {'task_id': 117, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.9004836082458496, 'timestamp': 1763019455.550995, 'success': True}, {'task_id': 160, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.6766822338104248, 'timestamp': 1763019484.2434478, 'success': True}, {'task_id': 331, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.7730906009674072, 'timestamp': 1763019588.093908, 'success': True}, {'task_id': 633, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.534494400024414, 'timestamp': 1763019773.0640018, 'success': True}, {'task_id': 460, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.3452293872833252, 'timestamp': 1763019663.163231, 'success': True}, {'task_id': 590, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 0.6533617973327637, 'timestamp': 1763019746.8364825, 'success': True}, {'task_id': 32, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.7353594303131104, 'timestamp': 1763019398.5032256, 'success': True}, {'task_id': 118, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.105531930923462, 'timestamp': 1763019454.8445039, 'success': True}, {'task_id': 161, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.2133677005767822, 'timestamp': 1763019484.0922744, 'success': True}, {'task_id': 332, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.38576388359069824, 'timestamp': 1763019587.903542, 'success': True}, {'task_id': 634, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.1301841735839844, 'timestamp': 1763019773.2212293, 'success': True}, {'task_id': 461, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.8737006187438965, 'timestamp': 1763019665.442251, 'success': True}, {'task_id': 591, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.214353084564209, 'timestamp': 1763019749.0237093, 'success': True}, {'task_id': 33, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.7335574626922607, 'timestamp': 1763019398.5962806, 'success': True}, {'task_id': 119, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.972752571105957, 'timestamp': 1763019458.8172565, 'success': True}, {'task_id': 162, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 4.509799957275391, 'timestamp': 1763019487.6389034, 'success': True}, {'task_id': 333, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.369300365447998, 'timestamp': 1763019589.2728424, 'success': True}, {'task_id': 635, 'url': 'https://httpbin.org/headers', 'error': '', 'duration': 5.5586628913879395, 'success': False}, {'task_id': 462, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.4054367542266846, 'timestamp': 1763019665.4111223, 'success': True}, {'task_id': 592, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.6231224536895752, 'timestamp': 1763019747.459605, 'success': True}, {'task_id': 34, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.366847038269043, 'timestamp': 1763019399.8313248, 'success': True}, {'task_id': 120, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.460804224014282, 'timestamp': 1763019460.0117993, 'success': True}, {'task_id': 163, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.1544134616851807, 'timestamp': 1763019487.246688, 'success': True}, {'task_id': 334, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.3088068962097168, 'timestamp': 1763019588.3560371, 'success': True}, {'task_id': 636, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.0126476287841797, 'timestamp': 1763019776.0766494, 'success': True}, {'task_id': 463, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.976073741912842, 'timestamp': 1763019666.1403022, 'success': True}, {'task_id': 593, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.4625663757324219, 'timestamp': 1763019748.8532012, 'success': True}, {'task_id': 121, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.6789684295654297, 'timestamp': 1763019459.6651425, 'success': True}, {'task_id': 164, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 4.618626356124878, 'timestamp': 1763019488.8620741, 'success': True}, {'task_id': 335, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.3514273166656494, 'timestamp': 1763019590.4474287, 'success': True}, {'task_id': 35, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.368436813354492, 'timestamp': 1763019402.8716624, 'success': True}, {'task_id': 637, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.9796044826507568, 'timestamp': 1763019775.2018723, 'success': True}, {'task_id': 464, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.513969898223877, 'timestamp': 1763019665.7995925, 'success': True}, {'task_id': 381, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.1924455165863037, 'timestamp': 1763019617.7071471, 'success': True}, {'task_id': 594, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 0.48292970657348633, 'timestamp': 1763019747.9425347, 'success': True}, {'task_id': 36, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.5210535526275635, 'timestamp': 1763019402.1173341, 'success': True}, {'task_id': 122, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.237067461013794, 'timestamp': 1763019458.5595043, 'success': True}, {'task_id': 165, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 4.148145437240601, 'timestamp': 1763019489.8457463, 'success': True}, {'task_id': 336, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.6749393939971924, 'timestamp': 1763019589.0309765, 'success': True}, {'task_id': 382, 'url': 'https://httpbin.org/user-agent', 'error': '', 'duration': 5.995866775512695, 'success': False}, {'task_id': 638, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.9110097885131836, 'timestamp': 1763019776.4189043, 'success': True}, {'task_id': 338, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.133592128753662, 'timestamp': 1763019592.1655684, 'success': True}, {'task_id': 465, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 4.819139003753662, 'timestamp': 1763019670.2312663, 'success': True}, {'task_id': 595, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.4742212295532227, 'timestamp': 1763019749.416756, 'success': True}, {'task_id': 37, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.9847629070281982, 'timestamp': 1763019402.4940262, 'success': True}, {'task_id': 123, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.440305709838867, 'timestamp': 1763019461.99981, 'success': True}, {'task_id': 166, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.7384231090545654, 'timestamp': 1763019489.985111, 'success': True}, {'task_id': 337, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.8257431983947754, 'timestamp': 1763019591.380254, 'success': True}, {'task_id': 339, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.963387966156006, 'timestamp': 1763019592.2376, 'success': True}, {'task_id': 639, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.2987232208251953, 'timestamp': 1763019777.5015185, 'success': True}, {'task_id': 237, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.0640885829925537, 'timestamp': 1763019530.4790826, 'success': True}, {'task_id': 596, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.9695875644683838, 'timestamp': 1763019750.0987294, 'success': True}, {'task_id': 38, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.128150463104248, 'timestamp': 1763019401.9594753, 'success': True}, {'task_id': 124, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.2991652488708496, 'timestamp': 1763019462.1164217, 'success': True}, {'task_id': 167, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.9526731967926025, 'timestamp': 1763019489.5921032, 'success': True}, {'task_id': 640, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.969022035598755, 'timestamp': 1763019780.0456715, 'success': True}, {'task_id': 467, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.0930416584014893, 'timestamp': 1763019668.8926342, 'success': True}, {'task_id': 597, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.6150779724121094, 'timestamp': 1763019751.4693406, 'success': True}, {'task_id': 39, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.1666512489318848, 'timestamp': 1763019404.1261265, 'success': True}, {'task_id': 125, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.613013982772827, 'timestamp': 1763019463.2792225, 'success': True}, {'task_id': 168, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.005152463912964, 'timestamp': 1763019491.8672266, 'success': True}, {'task_id': 340, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.941917896270752, 'timestamp': 1763019593.3902876, 'success': True}, {'task_id': 238, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.8174467086791992, 'timestamp': 1763019531.2965293, 'success': True}, {'task_id': 468, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.1396045684814453, 'timestamp': 1763019667.2799067, 'success': True}, {'task_id': 598, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.751246929168701, 'timestamp': 1763019752.7749562, 'success': True}, {'task_id': 40, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.1272716522216797, 'timestamp': 1763019403.2446058, 'success': True}, {'task_id': 126, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 5.193368673324585, 'timestamp': 1763019465.205168, 'success': True}, {'task_id': 169, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.497391700744629, 'timestamp': 1763019491.089495, 'success': True}, {'task_id': 341, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.0010230541229248, 'timestamp': 1763019592.381277, 'success': True}, {'task_id': 447, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.0633633136749268, 'timestamp': 1763019656.2485137, 'success': True}, {'task_id': 643, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.071957588195801, 'timestamp': 1763019781.8442473, 'success': True}, {'task_id': 599, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.7434735298156738, 'timestamp': 1763019751.1602294, 'success': True}, {'task_id': 41, 'url': 'https://httpbin.org/get', 'status': 502, 'duration': 2.92799711227417, 'timestamp': 1763019405.4230828, 'success': True}, {'task_id': 127, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.0973641872406006, 'timestamp': 1763019463.0971742, 'success': True}, {'task_id': 170, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.343411684036255, 'timestamp': 1763019493.189158, 'success': True}, {'task_id': 342, 'url': 'https://httpbin.org/get', 'status': 502, 'duration': 0.4008066654205322, 'timestamp': 1763019592.566375, 'success': True}, {'task_id': 396, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.0348961353302, 'timestamp': 1763019628.6359196, 'success': True}, {'task_id': 469, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.4906020164489746, 'timestamp': 1763019670.7705088, 'success': True}, {'task_id': 644, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.7709178924560547, 'timestamp': 1763019781.2672453, 'success': True}, {'task_id': 132, 'url': 'https://httpbin.org/get', 'error': '', 'duration': 5.37532114982605, 'success': False}, {'task_id': 470, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.1704604625701904, 'timestamp': 1763019672.064129, 'success': True}, {'task_id': 42, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.7577345371246338, 'timestamp': 1763019403.629397, 'success': True}, {'task_id': 128, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.7311117649078369, 'timestamp': 1763019462.8475335, 'success': True}, {'task_id': 171, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.919699430465698, 'timestamp': 1763019494.9048104, 'success': True}, {'task_id': 343, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.5078063011169434, 'timestamp': 1763019593.7463942, 'success': True}, {'task_id': 645, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.2974395751953125, 'timestamp': 1763019781.344247, 'success': True}, {'task_id': 21, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.7241508960723877, 'timestamp': 1763019392.9032261, 'success': True}, {'task_id': 471, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.925304889678955, 'timestamp': 1763019671.3700466, 'success': True}, {'task_id': 602, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.552086353302002, 'timestamp': 1763019755.0219636, 'success': True}, {'task_id': 29, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.7079229354858398, 'timestamp': 1763019395.8314724, 'success': True}, {'task_id': 43, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.6956171989440918, 'timestamp': 1763019404.940223, 'success': True}, {'task_id': 129, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.2891933917999268, 'timestamp': 1763019466.1367269, 'success': True}, {'task_id': 172, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.212062358856201, 'timestamp': 1763019493.3015573, 'success': True}, {'task_id': 344, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.3304364681243896, 'timestamp': 1763019593.7117136, 'success': True}, {'task_id': 646, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.3167307376861572, 'timestamp': 1763019783.583976, 'success': True}, {'task_id': 27, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.5664169788360596, 'timestamp': 1763019393.9177802, 'success': True}, {'task_id': 472, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.0962655544281006, 'timestamp': 1763019673.329055, 'success': True}, {'task_id': 603, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.3877263069152832, 'timestamp': 1763019753.6027668, 'success': True}, {'task_id': 25, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.624014139175415, 'timestamp': 1763019394.1235495, 'success': True}, {'task_id': 44, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.684696674346924, 'timestamp': 1763019406.3140936, 'success': True}, {'task_id': 130, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.419659614562988, 'success': False}, {'task_id': 173, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.6040573120117188, 'timestamp': 1763019495.471284, 'success': True}, {'task_id': 345, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.543513298034668, 'timestamp': 1763019595.11068, 'success': True}, {'task_id': 647, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 4.232638835906982, 'timestamp': 1763019785.5772147, 'success': True}, {'task_id': 429, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 4.558757305145264, 'timestamp': 1763019650.3818097, 'success': True}, {'task_id': 473, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.3683676719665527, 'timestamp': 1763019673.1388764, 'success': True}, {'task_id': 604, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.5844578742980957, 'timestamp': 1763019753.359414, 'success': True}, {'task_id': 131, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.8598418235778809, 'timestamp': 1763019465.1390643, 'success': True}, {'task_id': 174, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.771489143371582, 'timestamp': 1763019495.9617367, 'success': True}, {'task_id': 346, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.6937739849090576, 'timestamp': 1763019595.0840616, 'success': True}, {'task_id': 648, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.2942745685577393, 'timestamp': 1763019785.1395316, 'success': True}, {'task_id': 45, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.9186298847198486, 'timestamp': 1763019405.0447564, 'success': True}, {'task_id': 474, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.8002066612243652, 'timestamp': 1763019674.1702533, 'success': True}, {'task_id': 605, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.8752720355987549, 'timestamp': 1763019754.2346861, 'success': True}, {'task_id': 46, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.7910702228546143, 'timestamp': 1763019407.732293, 'success': True}, {'task_id': 175, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 4.107431888580322, 'timestamp': 1763019497.4089892, 'success': True}, {'task_id': 347, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.610222101211548, 'timestamp': 1763019596.3240023, 'success': True}, {'task_id': 446, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.402904748916626, 'timestamp': 1763019655.1456325, 'success': True}, {'task_id': 649, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.823819637298584, 'timestamp': 1763019786.3343344, 'success': True}, {'task_id': 133, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.6928846836090088, 'timestamp': 1763019465.8991818, 'success': True}, {'task_id': 475, 'url': 'https://httpbin.org/headers', 'error': '', 'duration': 5.448767900466919, 'success': False}, {'task_id': 478, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.118957996368408, 'timestamp': 1763019676.29021, 'success': True}, {'task_id': 606, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.895461320877075, 'timestamp': 1763019756.4992235, 'success': True}, {'task_id': 48, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.7195665836334229, 'timestamp': 1763019407.1426494, 'success': True}, {'task_id': 176, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.394162654876709, 'timestamp': 1763019496.298973, 'success': True}, {'task_id': 348, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.052777051925659, 'timestamp': 1763019595.7991712, 'success': True}, {'task_id': 650, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.4680778980255127, 'timestamp': 1763019786.052054, 'success': True}, {'task_id': 134, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.2249212265014648, 'timestamp': 1763019467.12532, 'success': True}, {'task_id': 583, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 0.7114903926849365, 'timestamp': 1763019743.0355108, 'success': True}, {'task_id': 607, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.8605847358703613, 'timestamp': 1763019756.0952709, 'success': True}, {'task_id': 49, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.4705545902252197, 'timestamp': 1763019409.7846482, 'success': True}, {'task_id': 177, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.2446177005767822, 'timestamp': 1763019497.7159016, 'success': True}, {'task_id': 349, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.768381118774414, 'timestamp': 1763019596.8524427, 'success': True}, {'task_id': 651, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.28621768951416, 'timestamp': 1763019787.4257493, 'success': True}, {'task_id': 135, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.256843090057373, 'timestamp': 1763019469.39357, 'success': True}, {'task_id': 608, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.347559928894043, 'timestamp': 1763019757.3705285, 'success': True}, {'task_id': 642, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.008996248245239, 'success': False}, {'task_id': 178, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.4333274364471436, 'timestamp': 1763019497.395064, 'success': True}, {'task_id': 350, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.0200107097625732, 'timestamp': 1763019596.1306908, 'success': True}, {'task_id': 499, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.8654537200927734, 'timestamp': 1763019695.3670554, 'success': True}, {'task_id': 600, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.1152546405792236, 'timestamp': 1763019752.213984, 'success': True}, {'task_id': 652, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.4818642139434814, 'timestamp': 1763019788.059079, 'success': True}, {'task_id': 50, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.357770204544067, 'timestamp': 1763019411.5004196, 'success': True}, {'task_id': 136, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.92659330368042, 'timestamp': 1763019469.0519133, 'success': True}, {'task_id': 479, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.656901836395264, 'success': False}, {'task_id': 601, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.026206016540527, 'timestamp': 1763019755.1874323, 'success': True}, {'task_id': 609, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.8913614749908447, 'timestamp': 1763019759.079792, 'success': True}, {'task_id': 179, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.3977928161621094, 'timestamp': 1763019497.696766, 'success': True}, {'task_id': 351, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.6995301246643066, 'timestamp': 1763019597.5003326, 'success': True}, {'task_id': 582, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.5552594661712646, 'timestamp': 1763019744.7434368, 'success': True}, {'task_id': 653, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.9497554302215576, 'timestamp': 1763019788.0018094, 'success': True}, {'task_id': 51, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.5486810207366943, 'timestamp': 1763019409.2819426, 'success': True}, {'task_id': 137, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 5.407773017883301, 'timestamp': 1763019473.9269068, 'success': True}, {'task_id': 480, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.5926945209503174, 'timestamp': 1763019678.8829045, 'success': True}, {'task_id': 610, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.8157334327697754, 'timestamp': 1763019759.9119585, 'success': True}, {'task_id': 683, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.4217491149902344, 'timestamp': 1763019806.9575248, 'success': True}, {'task_id': 180, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.7993133068084717, 'timestamp': 1763019500.1943774, 'success': True}, {'task_id': 352, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.2972655296325684, 'timestamp': 1763019598.4279563, 'success': True}, {'task_id': 654, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.888421058654785, 'timestamp': 1763019789.2227554, 'success': True}, {'task_id': 52, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 4.3660361766815186, 'timestamp': 1763019412.169251, 'success': True}, {'task_id': 11, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 4.466138124465942, 'timestamp': 1763019388.594295, 'success': True}, {'task_id': 138, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.302541732788086, 'timestamp': 1763019470.354455, 'success': True}, {'task_id': 481, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.036553621292114, 'success': False}, {'task_id': 611, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.4509813785552979, 'timestamp': 1763019757.9502048, 'success': True}, {'task_id': 53, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.867708683013916, 'timestamp': 1763019412.1496513, 'success': True}, {'task_id': 181, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.7708213329315186, 'timestamp': 1763019498.1798105, 'success': True}, {'task_id': 353, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.943234443664551, 'timestamp': 1763019600.2682416, 'success': True}, {'task_id': 655, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.6308214664459229, 'timestamp': 1763019788.0565708, 'success': True}, {'task_id': 139, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.037170648574829, 'timestamp': 1763019470.4307406, 'success': True}, {'task_id': 482, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.3765196800231934, 'timestamp': 1763019679.8894167, 'success': True}, {'task_id': 612, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.360684633255005, 'timestamp': 1763019759.731213, 'success': True}, {'task_id': 740, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.8889186382293701, 'timestamp': 1763019838.7081099, 'success': True}, {'task_id': 54, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.102342128753662, 'timestamp': 1763019412.8869903, 'success': True}, {'task_id': 182, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.3021152019500732, 'timestamp': 1763019499.999879, 'success': True}, {'task_id': 354, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.1853954792022705, 'timestamp': 1763019600.038839, 'success': True}, {'task_id': 656, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.196701765060425, 'timestamp': 1763019790.1985111, 'success': True}, {'task_id': 140, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.5848474502563477, 'timestamp': 1763019472.9393024, 'success': True}, {'task_id': 483, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.040419816970825, 'timestamp': 1763019680.925372, 'success': True}, {'task_id': 613, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.248945474624634, 'timestamp': 1763019761.2014368, 'success': True}, {'task_id': 691, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 0.8014979362487793, 'timestamp': 1763019811.647589, 'success': True}, {'task_id': 55, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.9599921703338623, 'timestamp': 1763019413.4604118, 'success': True}, {'task_id': 183, 'url': 'https://httpbin.org/headers', 'status': 502, 'duration': 1.6157662868499756, 'timestamp': 1763019499.3323894, 'success': True}, {'task_id': 355, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.4284274578094482, 'timestamp': 1763019598.9297185, 'success': True}, {'task_id': 657, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 2.8141591548919678, 'timestamp': 1763019790.8719203, 'success': True}, {'task_id': 14, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.620861768722534, 'timestamp': 1763019388.8849537, 'success': True}, {'task_id': 141, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.7993695735931396, 'timestamp': 1763019473.2301102, 'success': True}, {'task_id': 484, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.444126844406128, 'timestamp': 1763019684.3347223, 'success': True}, {'task_id': 614, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.493277549743652, 'timestamp': 1763019763.5738938, 'success': True}, {'task_id': 56, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.8732984066009521, 'timestamp': 1763019414.0240471, 'success': True}, {'task_id': 184, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.8175160884857178, 'timestamp': 1763019500.9973266, 'success': True}, {'task_id': 356, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.1827905178070068, 'timestamp': 1763019599.6111734, 'success': True}, {'task_id': 658, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 0.736966609954834, 'timestamp': 1763019788.7970557, 'success': True}, {'task_id': 142, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 5.326794385910034, 'timestamp': 1763019475.8424525, 'success': True}, {'task_id': 485, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.996089458465576, 'success': False}, {'task_id': 615, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.829726219177246, 'timestamp': 1763019762.5609393, 'success': True}, {'task_id': 57, 'url': 'https://httpbin.org/delay/1', 'error': '', 'duration': 5.3419225215911865, 'success': False}, {'task_id': 185, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.3281941413879395, 'timestamp': 1763019500.6605835, 'success': True}, {'task_id': 357, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.688286542892456, 'timestamp': 1763019600.618005, 'success': True}, {'task_id': 659, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.838271141052246, 'timestamp': 1763019791.6353269, 'success': True}]
Total time: 474.58 seconds
Average latency: 2.3183 seconds

4. 多线程执行测试

import concurrent.futures
import time
import threading
import multiprocessing as mp
from typing import Dict, List, Any
from p17_1realIO import RealisticIOLoadGenerator, PerformanceBenchmarkclass MultithreadingImplementation:"""多线程执行测试"""def __init__(self, load_generator: RealisticIOLoadGenerator, max_workers: int = 4):  # 统一并行数量为4个self.load_generator = load_generatorself.max_workers = max_workersdef create_thread_pool(self) -> concurrent.futures.ThreadPoolExecutor:"""创建优化的线程池"""return concurrent.futures.ThreadPoolExecutor(max_workers=self.max_workers,thread_name_prefix="IOThread")def run_with_thread_pool(self, num_tasks: int = 100) -> List[Dict[str, Any]]:"""使用线程池执行"""with self.create_thread_pool() as executor:futures = [executor.submit(self.load_generator.thread_http_request, i)for i in range(num_tasks)]start_time = time.time()results = []latencies = []for future in concurrent.futures.as_completed(futures):try:result = future.result(timeout=10)results.append(result)if result['success']:latencies.append(result['duration'])except Exception as e:print(f"Thread task failed: {e}")total_time = time.time() - start_timereturn results, total_time, latenciesdef run_dynamic_threading(self, duration: float = 10.0) -> List[Dict[str, Any]]:  # 统一测试时长为10秒"""动态多线程执行"""results = []latencies = []start_time = time.time()task_id = 0lock = threading.Lock()def worker():nonlocal task_id, results, latencieslocal_results = []local_latencies = []while time.time() - start_time < duration:current_id = task_idtask_id += 1result = self.load_generator.thread_http_request(current_id)local_results.append(result)if result['success']:local_latencies.append(result['duration'])# 批量写入减少锁竞争if len(local_results) >= 20:with lock:results.extend(local_results)latencies.extend(local_latencies)local_results = []local_latencies = []# 最后一批结果if local_results:with lock:results.extend(local_results)latencies.extend(local_latencies)# 创建多个工作者线程threads = []num_threads = 4  # 统一并行数量为4个for i in range(num_threads):t = threading.Thread(target=worker, name=f"Worker-{i}")threads.append(t)t.start()# 等待所有线程完成for t in threads:t.join()total_time = time.time() - start_timereturn results, total_time, latenciesif __name__ == "__main__":thread_impl = MultithreadingImplementation(RealisticIOLoadGenerator())results, total_time, latencies = thread_impl.run_with_thread_pool()print(f"Thread pool results: {results}")print(f"Total time: {total_time:.2f} seconds")print(f"Average latency: {sum(latencies) / len(latencies):.4f} seconds")

返回:

Thread pool results: [{'task_id': 2, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.64089035987854, 'timestamp': 1763018720.6677675, 'success': True}, {'task_id': 3, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 4.620900392532349, 'timestamp': 1763018722.6492817, 'success': True}, {'task_id': 1, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 5.1354053020477295, 'timestamp': 1763018723.160058, 'success': True}, {'task_id': 0, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 5.218899965286255, 'timestamp': 1763018723.242559, 'success': True}, {'task_id': 4, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.147965669631958, 'timestamp': 1763018723.82111, 'success': True}, {'task_id': 5, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.9038810729980469, 'timestamp': 1763018724.5546691, 'success': True}, {'task_id': 8, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.264864206314087, 'timestamp': 1763018728.0877182, 'success': True}, {'task_id': 6, 'url': 'https://httpbin.org/headers', 'error': "HTTPSConnectionPool(host='httpbin.org', port=443): Read timed out. (read timeout=5)", 'duration': 6.379794597625732, 'success': False}, {'task_id': 7, 'url': 'https://httpbin.org/headers', 'error': "HTTPSConnectionPool(host='httpbin.org', port=443): Read timed out. (read timeout=5)", 'duration': 6.57780385017395, 'success': False}, {'task_id': 10, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.627431869506836, 'timestamp': 1763018730.7172117, 'success': True}, {'task_id': 9, 'url': 'https://httpbin.org/user-agent', 'error': "HTTPSConnectionPool(host='httpbin.org', port=443): Read timed out. (read timeout=5)", 'duration': 6.303241729736328, 'success': False}, {'task_id': 11, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.004922389984131, 'timestamp': 1763018731.5475993, 'success': True}, {'task_id': 12, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.8022096157073975, 'timestamp': 1763018731.6233556, 'success': True}, {'task_id': 13, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.9363844394683838, 'timestamp': 1763018732.6543164, 'success': True}, {'task_id': 14, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.1029958724975586, 'timestamp': 1763018733.9620686, 'success': True}, {'task_id': 16, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 4.323602676391602, 'timestamp': 1763018735.947819, 'success': True}, {'task_id': 17, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 4.751221418380737, 'timestamp': 1763018737.407752, 'success': True}, {'task_id': 15, 'url': 'https://httpbin.org/delay/1', 'error': "HTTPSConnectionPool(host='httpbin.org', port=443): Read timed out. (read timeout=5)", 'duration': 6.437001943588257, 'success': False}, {'task_id': 19, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.129460573196411, 'timestamp': 1763018738.0788915, 'success': True}, {'task_id': 18, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 5.648653507232666, 'timestamp': 1763018739.6158183, 'success': True}, {'task_id': 20, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.755096197128296, 'timestamp': 1763018741.1660047, 'success': True}, {'task_id': 21, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 4.058772087097168, 'timestamp': 1763018742.047127, 'success': True}, {'task_id': 25, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 1.644345760345459, 'timestamp': 1763018743.693656, 'success': True}, {'task_id': 22, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 6.120203733444214, 'timestamp': 1763018744.200389, 'success': True}, {'task_id': 24, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.1698191165924072, 'timestamp': 1763018744.3394308, 'success': True}, {'task_id': 23, 'url': 'https://httpbin.org/delay/1', 'error': "HTTPSConnectionPool(host='httpbin.org', port=443): Read timed out. (read timeout=5)", 'duration': 6.179854869842529, 'success': False}, {'task_id': 28, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.4336485862731934, 'timestamp': 1763018746.7744696, 'success': True}, {'task_id': 27, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.412177085876465, 'timestamp': 1763018747.6136022, 'success': True}, {'task_id': 26, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.457198858261108, 'timestamp': 1763018748.1543539, 'success': True}, {'task_id': 30, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.3168985843658447, 'timestamp': 1763018749.092097, 'success': True}, {'task_id': 29, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.4096274375915527, 'timestamp': 1763018749.2089455, 'success': True}, {'task_id': 31, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.7938876152038574, 'timestamp': 1763018750.4085858, 'success': True}, {'task_id': 32, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.1171650886535645, 'timestamp': 1763018751.2726452, 'success': True}, {'task_id': 33, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 3.3451671600341797, 'timestamp': 1763018752.4390771, 'success': True}, {'task_id': 37, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.5497195720672607, 'timestamp': 1763018754.9902155, 'success': True}, {'task_id': 34, 'url': 'https://httpbin.org/user-agent', 'error': "HTTPSConnectionPool(host='httpbin.org', port=443): Read timed out. (read timeout=5)", 'duration': 6.261272668838501, 'success': False}, {'task_id': 35, 'url': 'https://httpbin.org/status/200', 'error': "HTTPSConnectionPool(host='httpbin.org', port=443): Read timed out. (read timeout=5)", 'duration': 6.145320177078247, 'success': False}, {'task_id': 36, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 6.407497406005859, 'timestamp': 1763018757.6813815, 'success': True}, {'task_id': 40, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.6104328632354736, 'timestamp': 1763018758.1651213, 'success': True}, {'task_id': 41, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.8360564708709717, 'timestamp': 1763018759.5193827, 'success': True}, {'task_id': 42, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.101412773132324, 'timestamp': 1763018760.2683625, 'success': True}, {'task_id': 39, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 5.778399467468262, 'timestamp': 1763018761.2507365, 'success': True}, {'task_id': 38, 'url': 'https://httpbin.org/headers', 'error': "HTTPSConnectionPool(host='httpbin.org', port=443): Read timed out. (read timeout=5)", 'duration': 6.273876905441284, 'success': False}, {'task_id': 43, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.9106636047363281, 'timestamp': 1763018761.4314623, 'success': True}, {'task_id': 47, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.268841505050659, 'timestamp': 1763018763.7031734, 'success': True}, {'task_id': 45, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.2421140670776367, 'timestamp': 1763018764.4954534, 'success': True}, {'task_id': 44, 'url': 'https://httpbin.org/delay/1', 'error': "HTTPSConnectionPool(host='httpbin.org', port=443): Read timed out. (read timeout=5)", 'duration': 6.293101072311401, 'success': False}, {'task_id': 46, 'url': 'https://httpbin.org/status/200', 'error': "HTTPSConnectionPool(host='httpbin.org', port=443): Read timed out. (read timeout=5)", 'duration': 6.380242824554443, 'success': False}, {'task_id': 49, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.601480960845947, 'timestamp': 1763018769.097974, 'success': True}, {'task_id': 50, 'url': 'https://httpbin.org/user-agent', 'status': 502, 'duration': 3.2539427280426025, 'timestamp': 1763018769.8173642, 'success': True}, {'task_id': 48, 'url': 'https://httpbin.org/get', 'error': "HTTPSConnectionPool(host='httpbin.org', port=443): Read timed out. (read timeout=5)", 'duration': 6.321394443511963, 'success': False}, {'task_id': 52, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.284238338470459, 'timestamp': 1763018771.386326, 'success': True}, {'task_id': 51, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.953727960586548, 'timestamp': 1763018771.5992234, 'success': True}, {'task_id': 53, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.484811782836914, 'timestamp': 1763018773.3033218, 'success': True}, {'task_id': 56, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.3053321838378906, 'timestamp': 1763018773.9053378, 'success': True}, {'task_id': 57, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 1.9441413879394531, 'timestamp': 1763018775.2495914, 'success': True}, {'task_id': 55, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.894873857498169, 'timestamp': 1763018775.2838552, 'success': True}, {'task_id': 54, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 5.870802402496338, 'timestamp': 1763018775.8961716, 'success': True}, {'task_id': 60, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.822474956512451, 'timestamp': 1763018778.109038, 'success': True}, {'task_id': 59, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.5634288787841797, 'timestamp': 1763018778.8144584, 'success': True}, {'task_id': 61, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.042445659637451, 'timestamp': 1763018778.9416173, 'success': True}, {'task_id': 62, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.1808745861053467, 'timestamp': 1763018780.2936509, 'success': True}, {'task_id': 58, 'url': 'https://httpbin.org/delay/1', 'error': "HTTPSConnectionPool(host='httpbin.org', port=443): Read timed out. (read timeout=5)", 'duration': 7.041503190994263, 'success': False}, {'task_id': 64, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.804832935333252, 'timestamp': 1763018781.7472084, 'success': True}, {'task_id': 65, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 1.8695662021636963, 'timestamp': 1763018782.16412, 'success': True}, {'task_id': 66, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.2705442905426025, 'timestamp': 1763018783.2186007, 'success': True}, {'task_id': 67, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 1.8899023532867432, 'timestamp': 1763018783.6382492, 'success': True}, {'task_id': 63, 'url': 'https://httpbin.org/user-agent', 'error': "HTTPSConnectionPool(host='httpbin.org', port=443): Read timed out. (read timeout=5)", 'duration': 6.460281133651733, 'success': False}, {'task_id': 68, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 4.181727409362793, 'timestamp': 1763018786.3471236, 'success': True}, {'task_id': 69, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.246541976928711, 'timestamp': 1763018786.465934, 'success': True}, {'task_id': 70, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 2.9596104621887207, 'timestamp': 1763018786.5991118, 'success': True}, {'task_id': 71, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 4.109847545623779, 'timestamp': 1763018789.3855503, 'success': True}, {'task_id': 74, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 4.101282835006714, 'timestamp': 1763018790.70302, 'success': True}, {'task_id': 73, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 4.464451313018799, 'timestamp': 1763018790.935328, 'success': True}, {'task_id': 72, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 5.232130527496338, 'timestamp': 1763018791.582804, 'success': True}, {'task_id': 75, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 4.145304918289185, 'timestamp': 1763018793.5320563, 'success': True}, {'task_id': 78, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.1796159744262695, 'timestamp': 1763018793.7641652, 'success': True}, {'task_id': 76, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 3.456477642059326, 'timestamp': 1763018794.1602318, 'success': True}, {'task_id': 77, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.7555954456329346, 'timestamp': 1763018794.6922526, 'success': True}, {'task_id': 80, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.3658759593963623, 'timestamp': 1763018796.1311803, 'success': True}, {'task_id': 81, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.644073724746704, 'timestamp': 1763018796.8058782, 'success': True}, {'task_id': 82, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.9865798950195312, 'timestamp': 1763018797.680009, 'success': True}, {'task_id': 83, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.768038511276245, 'timestamp': 1763018798.9006326, 'success': True}, {'task_id': 84, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 2.1542699337005615, 'timestamp': 1763018798.9635465, 'success': True}, {'task_id': 79, 'url': 'https://httpbin.org/delay/1', 'error': "HTTPSConnectionPool(host='httpbin.org', port=443): Read timed out. (read timeout=5)", 'duration': 6.362646818161011, 'success': False}, {'task_id': 87, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.659508228302002, 'timestamp': 1763018801.6245399, 'success': True}, {'task_id': 85, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 4.096215724945068, 'timestamp': 1763018801.7781677, 'success': True}, {'task_id': 86, 'url': 'https://httpbin.org/status/200', 'error': "HTTPSConnectionPool(host='httpbin.org', port=443): Read timed out. (read timeout=5)", 'duration': 6.296148777008057, 'success': False}, {'task_id': 89, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 4.1092894077301025, 'timestamp': 1763018805.7350073, 'success': True}, {'task_id': 88, 'url': 'https://httpbin.org/headers', 'error': "HTTPSConnectionPool(host='httpbin.org', port=443): Read timed out. (read timeout=5)", 'duration': 6.181433200836182, 'success': False}, {'task_id': 90, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 4.365708351135254, 'timestamp': 1763018806.1448097, 'success': True}, {'task_id': 91, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 2.2035915851593018, 'timestamp': 1763018807.4017828, 'success': True}, {'task_id': 93, 'url': 'https://httpbin.org/status/200', 'status': 200, 'duration': 3.329970121383667, 'timestamp': 1763018809.408817, 'success': True}, {'task_id': 92, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 3.8230741024017334, 'timestamp': 1763018809.5604308, 'success': True}, {'task_id': 95, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.5079431533813477, 'timestamp': 1763018810.91059, 'success': True}, {'task_id': 94, 'url': 'https://httpbin.org/delay/1', 'status': 200, 'duration': 5.698163032531738, 'timestamp': 1763018811.8442442, 'success': True}, {'task_id': 96, 'url': 'https://httpbin.org/user-agent', 'status': 200, 'duration': 2.861421823501587, 'timestamp': 1763018812.272242, 'success': True}, {'task_id': 97, 'url': 'https://httpbin.org/get', 'status': 200, 'duration': 4.265833377838135, 'timestamp': 1763018813.829878, 'success': True}, {'task_id': 98, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.529327392578125, 'timestamp': 1763018814.4424756, 'success': True}, {'task_id': 99, 'url': 'https://httpbin.org/headers', 'status': 200, 'duration': 3.3425323963165283, 'timestamp': 1763018815.1888177, 'success': True}]
Total time: 97.16 seconds
Average latency: 3.3521 seconds
http://www.dtcms.com/a/605214.html

相关文章:

  • 深入理解C语言中的static和extern关键字
  • 做期货应关注什么网站双语网站建设网站
  • Aspose.Cells for java 在将xlsx 转化为pdf 时有渲染问题
  • 如何读懂英文科技文献中的公式:从畏难到掌握的系统方法
  • Ansible,Playbook的简单应用
  • C++ 面试高频考点 链表 迭代 递归 力扣 25. K 个一组翻转链表 每日一题 题解
  • Unity Shader Graph 3D 实例 - 一个简单的高亮能量Buff
  • [Column] 构建十亿/s级DB | 索引DBRTDB | Kafka 为中心 | Rust 构建引擎
  • 项目八:Agent与自动化工作流(跨境电商AI运营助手Agent系统)
  • 百日挑战——单词篇(第二十一天)
  • Modbus协议详细介绍
  • 无人机遥控器频段与通道数详解
  • 网站开发兼职网站php做网站安装
  • 网站提示 “不安全”?免费 SSL 证书一键解决
  • wordpress链接域名南宁seo团队费用是多少
  • 如何实现Plaxis复杂工况自动化?Python在渗流、动力与参数化分析中的应用
  • 关于Unity 轴心点 Pivot、锚点 Anchor和控制轴
  • 整合Spring Cloud Alibaba与Gateway实现跨域的解决方案
  • 沙猫算法详细原理流程,公式,沙猫算法优化神经网络
  • Centos7 搭建hadoop2.7.2、hbase伪分布式集群
  • NetCoreKevin-基于NET8搭建DDD-微服务-现代化Saas企业级WebAPI前后端分离架构
  • 服装店网站建设思路thinkphp企业网站模板下载
  • 销售网站排名广州seo全网营销
  • QF-Lib:用一个库搞定Python量化回测和策略开发
  • 江西中赣建设有限公司网站绵阳市建设银行网站
  • 更新原生小程序封装(新增缓存订阅)完美解决
  • 医疗小程序07设置默认卡
  • 培训机构如何利用小程序线上引流招生?培训机构小程序开发教程
  • 游戏助手|游戏攻略|基于SprinBoot+vue的游戏攻略系统小程序(源码+数据库+文档)
  • 基于开源AI智能名片链动2+1模式与S2B2C商城小程序的商家活动策略研究