Skip to content

Commit

Permalink
Merge pull request #2999 from wazuh/fix/2814-cluster-performance-test
Browse files Browse the repository at this point in the history
Remove `integrity_sync` data in stable phase
  • Loading branch information
jmv74211 committed Jul 1, 2022
2 parents 4cf8e1a + 3afd3a5 commit c9ef57a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
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

0 comments on commit c9ef57a

Please sign in to comment.