Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Gu <[email protected]>
  • Loading branch information
tylergu committed Nov 20, 2023
1 parent 3ee3634 commit d5c7602
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions performance_measurement/measure_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def test_normal(
# start the stats watcher
control_plane_stats_dir = os.path.join(trial_dir, "control_plane_stats")
os.makedirs(control_plane_stats_dir, exist_ok=True)
watcher = WatchStats(cluster, "anvil", control_plane_stats_dir)
watcher = WatchStats("anvil", control_plane_stats_dir)
pods_watcher = MetricsApiWatcher(control_plane_stats_dir)
watcher_thread = threading.Thread(target=watcher.start, args=(cluster,))
pods_watcher_thread = threading.Thread(target=pods_watcher.start, args=(runner.apiclient,deploy.operator_name))
Expand Down Expand Up @@ -113,7 +113,7 @@ def test_normal(
control_plane_stats_dir = os.path.join(single_operation_trial_dir, "control_plane_stats")
os.makedirs(control_plane_stats_dir, exist_ok=True)

watcher = WatchStats(cluster, "anvil", control_plane_stats_dir)
watcher = WatchStats("anvil", control_plane_stats_dir)
pods_watcher = MetricsApiWatcher(control_plane_stats_dir)

gen = 0
Expand Down

0 comments on commit d5c7602

Please sign in to comment.