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

Fixed error related to logs format in reliability test #4387

Merged
merged 7 commits into from
Aug 11, 2023
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Release report: TBD

### Fixed

- Fix an error related to logs format in reliability test ([#4387](https://github.com/wazuh/wazuh-qa/pull/4387)) \- (Tests)
- Fix boto3 version requirement for legacy OS ([#4150](https://github.com/wazuh/wazuh-qa/pull/4150)) \- (Framework)
- Fix cases yaml of the analysisd windows registry IT ([#4149](https://github.com/wazuh/wazuh-qa/pull/4149)) \- (Tests)
- Fix a bug in on Migration tool's library ([#4106](https://github.com/wazuh/wazuh-qa/pull/4106)) \- (Framework)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Root
- log_id: root
parent: null
tag: Agent-groups recv root

# Common logs
- log_id: log0
parent: root
tag: Starting.*
- log_id: log1
parent: log0
tag: .*chunks updated in wazuh-db in.*
- log_id: log2
parent: log1
tag: Obtained.*chunks of data in.*

# No need to synchronize after failed synchronization tries.
- log_id: log3
parent: log2
tag: The checksum of both databases match.*Counter reset.
- log_id: log4
parent: log3
tag: Finished in.*Updated.*chunks.*

# No need to synchronize.
- log_id: log15
parent: log2
tag: The checksum of both databases match.*
- log_id: log16
parent: log15
tag: Finished in.*Updated.*chunks.*

# The checksum differs
- log_id: log9
parent: log2
tag: The checksum of master (.*) and worker (.*) are different.

# Checksum comparison fails.
- log_id: log12
parent: log9
tag: Checksum comparison failed \([0-4]/5\).
- log_id: log13
parent: log12
tag: Finished in.*Updated.*chunks.*

# Forced synchronization is required.
- log_id: log5
parent: log9
tag: Checksum comparison failed \(5/5\).
- log_id: log7
parent: log5
tag: Sent request to obtain all agent-groups information from the master node.*
- log_id: log8
parent: log7
tag: Finished in.*Updated.*chunks.*

This file was deleted.

Loading