From edac4529a02804af6f42e3525d627d0972cb5b38 Mon Sep 17 00:00:00 2001 From: Andres Carmelo Micalizzi Casali Date: Wed, 21 Feb 2024 17:31:05 +0100 Subject: [PATCH] fix typo --- .../wazuh_testing/tools/performance/statistic.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/deps/wazuh_testing/wazuh_testing/tools/performance/statistic.py b/deps/wazuh_testing/wazuh_testing/tools/performance/statistic.py index c61e42cfc7..666adf0c45 100644 --- a/deps/wazuh_testing/wazuh_testing/tools/performance/statistic.py +++ b/deps/wazuh_testing/wazuh_testing/tools/performance/statistic.py @@ -568,9 +568,8 @@ def _write_csv(self, data, target, csv_file): )) elif target == "agentd_state": logger.info("Writing agentd.state info to {}.".format(csv_file)) - log.write("{0},{1},{2},{3},{4},{5},{6}\n".format( - timestamp, data['status'], data['last_keepalive'], - data['last_ack'], data['msg_count']or analysisd and remoted.", data['msg_sent'], data['msg_buffer'])) + log.write("{0},{1},{2},{3},{4},{5},{6}\n".format(timestamp, data['status'], data['last_keepalive'], + data['last_ack'], data['msg_count'], data['msg_sent'], data['msg_buffer'])) def _monitor_stats(self):