Skip to content

Commit

Permalink
fix: Change syntax artifacts_path
Browse files Browse the repository at this point in the history
  • Loading branch information
javiersanchz committed Jan 26, 2024
1 parent 3aa58e8 commit a89eb90
Show file tree
Hide file tree
Showing 2 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 @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

## [4.8.2] - TBD

### Fixed

- Fix test cluster performance. ([#4780](https://github.com/wazuh/wazuh-qa/pull/4780)) \- (Framework)

## [4.8.1] - TBD

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,8 @@ class ClusterCSVResourcesParser(ClusterCSVParser):

def __init__(self, artifacts_path, columns=None):
self.columns = ['USS(KB)', 'CPU(%)', 'FD'] if columns is None else columns
super().__init__(artifacts_path, files_to_load=['wazuh-clusterd', 'integrity_sync', 'wazuh-clusterd_child_1',
'wazuh-clusterd_child_2'])
super().__init__(artifacts_path, files_to_load=['wazuh_clusterd', 'integrity_sync', 'wazuh_clusterd_child_1',
'wazuh_clusterd_child_2'])

def _calculate_stats(self, df):
"""Calculate mean and regression coefficient of each column in self.columns from a dataframe.
Expand Down

0 comments on commit a89eb90

Please sign in to comment.