Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove integrity_sync data in stable phase #2999

Merged
merged 2 commits into from
Jul 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ Release report: TBD

- Update cluster logs in reliability tests ([#2772](https://github.com/wazuh/wazuh-qa/pull/2772))

### Fixed

- Fix an error in the cluster performance tests related to CSV parser ([#2999](https://github.com/wazuh/wazuh-qa/pull/2999))

## [4.4.0] - Development (unreleased)

Wazuh commit: TBD \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def _calculate_all_df_stats(self, dfs_dict):
for phase in [self.SETUP_PHASE, self.STABLE_PHASE]:
for file_name, file_df in files.items():
trimmed_df = self._trim_dataframe(file_df, phase, setup_datetime)
if len(trimmed_df):
if len(trimmed_df) and not (phase == self.STABLE_PHASE and file_name == 'integrity_sync'):
result[phase][file_name][node] = self._calculate_stats(trimmed_df)

return result
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,6 @@ resources:
mean: 197162 # (197 MB)
reg_cof: 209.6
workers:
max: 201480 # (201 MB)
max: 256000 # (250 MB)
mean: 145000 # (145 MB)
reg_cof: 260