Skip to content

Commit

Permalink
feat: Store load test run
Browse files Browse the repository at this point in the history
Allows the monitor to wait until the run starts and share the run id with the load test script.
  • Loading branch information
bmtcril committed Mar 25, 2024
1 parent e08cba9 commit 5aea747
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def record_to_clickhouse(self, event_type, extra) -> None:
"""

output = io.StringIO()
writer = csv.writer(output, dialect="excel_tab")
writer = csv.writer(output, dialect="excel-tab")
writer.writerow((self.run_id, event_type, json.dumps(extra), None))
print(output.getvalue().encode("utf-8"))

Expand Down

0 comments on commit 5aea747

Please sign in to comment.