diff --git a/osbenchmark/worker_coordinator/worker_coordinator.py b/osbenchmark/worker_coordinator/worker_coordinator.py index 4caf8356..fd0fea5d 100644 --- a/osbenchmark/worker_coordinator/worker_coordinator.py +++ b/osbenchmark/worker_coordinator/worker_coordinator.py @@ -1549,7 +1549,7 @@ def os_clients(all_hosts, all_client_options): class AsyncProfiler: - SORT_TYPES = ["ncall", "ttot"] + SORT_TYPES = ["ncall", "tsub", "ttot", "tavg"] def __init__(self, target, client_id, task, sort_type): """ @@ -1599,7 +1599,6 @@ async def __call__(self, *args, **kwargs): 4: ("tavg", 8) }) - profile = f"\n=== Profile start for client id [{self.client_id}] and task [{self.task}] ===\n" profile += s.getvalue() profile += "\n=== Profile END ===\n"