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 21, 2023
1 parent 30a6442 commit 92c14f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion performance_measurement/metrics_api_watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def start(self, apiclient: ApiClient, operator_name: str, ):
pod_metrics['timestamp'] = pod['timestamp']

stats_buf.append(pod_metrics)
if len(stats_buf) >= 1000:
if len(stats_buf) >= 100:
self.write_stats(stats_buf, self._sequence)
stats_buf = []
self._sequence += 1
Expand Down

0 comments on commit 92c14f8

Please sign in to comment.