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

Release 4.9.0 - Beta 2 - Workload benchmarks metrics #25175

Closed
2 tasks done
RamosFe opened this issue Aug 12, 2024 · 3 comments
Closed
2 tasks done

Release 4.9.0 - Beta 2 - Workload benchmarks metrics #25175

RamosFe opened this issue Aug 12, 2024 · 3 comments

Comments

@RamosFe
Copy link
Member

RamosFe commented Aug 12, 2024

The following issue aims to run all workload benchmarks for the current release candidate, report the results, and open new issues for any encountered errors.

Workload benchmarks metrics information

Main release candidate issue #25126
Version 4.9.0
Release candidate # Beta 2
Tag https://github.com/wazuh/wazuh/tree/v4.9.0-beta2
Previous Workload benchmarks metrics issue #25053

Test configuration

All tests will be run and workload performance metrics will be obtained for the following clustered environment configurations:

# Agents # Worker nodes
50000 25

Test report procedure

All individual test checks must be marked as:

Pass The test ran successfully.
Xfail The test was expected to fail and it failed. It must be properly justified and reported in an issue.
Skip The test was not run. It must be properly justified and reported in an issue.
Fail The test failed. A new issue must be opened to evaluate and address the problem.

All test results must have one the following statuses:

🟢 All checks passed.
🔴 There is at least one failed check.
🟡 There is at least one expected fail or skipped test and no failures.

Any failing test must be properly addressed with a new issue, detailing the error and the possible cause. It must be included in the Fixes section of the current release candidate main issue.

Any expected fail or skipped test must have an issue justifying the reason. All auditors must validate the justification for an expected fail or skipped test.

An extended report of the test results must be attached as a zip or txt. This report can be used by the auditors to dig deeper into any possible failures and details.

Conclusions

All tests have been executed and the results can be found #25175 (comment) and #25175 (comment).

Most of the tests have some failure related to the wazuh-db errors described in the logs. The following Issues were created:

Auditors validation

The definition of done for this one is the validation of the conclusions and the test results from all auditors.

All checks from below must be accepted in order to close this issue.

@RamosFe
Copy link
Member Author

RamosFe commented Aug 13, 2024

API performance tests 🔴

Artifacts: api_performance_tests.zip

Tests results

Endpoint test name Status Issues Ref.
GET /cluster/local/info 🟢
GET /cluster/nodes 🟢
GET /cluster/healthcheck 🟢
GET /cluster/status 🟢
GET /cluster/local/config 🟢
GET /cluster/api/config 🟢
GET /cluster/configuration/validation 🟢
GET /manager/status 🟢
GET /manager/info 🟢
GET /manager/configuration 🟢
GET /manager/logs 🟢
GET /manager/api/config 🟢
GET /manager/configuration/validation 🟢
GET /mitre/groups 🟢
GET /mitre/metadata 🟢
GET /mitre/mitigations 🟢
GET /mitre/references 🟢
GET /mitre/software 🟢
GET /mitre/tactics 🟢
GET /mitre/techniques 🟢
GET /overview/agents 🟢
GET /tasks/status 🟢
PUT /active-response 🟢
PUT /rootcheck 🟢
PUT /syscheck 🟢
POST /groups 🟢
POST /security/users 🟢
POST /security/roles 🟢
POST /security/policies 🟢
POST /security/rules 🟢
PUT /agents/group 🟢
PUT /agents/group/new_test_group/restart 🟢
PUT /agents/restart 🔴 #25212
POST /agents 🟢
POST /agents/insert​ 🟢
POST /agents/insert​/quick 🟢
GET /agents 🟢
GET /agents/no_group 🟢
GET /agents/outdated 🟢
GET /decoders 🟢
GET /groups 🟢
GET /lists 🟢
GET /rules 🟢
GET /security/users 🟢
GET /security/roles 🟢
GET /security/policies 🟢
GET /security/rules 🟢
DELETE /groups 🟢
DELETE /agents 🔴 #25212
DELETE /security/users 🔴 #25212
DELETE /security/roles 🟢
DELETE /security/policies 🟢
DELETE /security/rules 🟢
PUT /manager/restart 🟢
PUT /cluster/restart 🟢

After analyzing the logs shown in #25175 (comment), there are no sign that the timeouts are related to the API itself but to the wazuh-db errors described in #25212.

@RamosFe
Copy link
Member Author

RamosFe commented Aug 13, 2024

Cluster performance tests 🔴

Artifacts: cluster_performance.zip

The test failed with the error

Results
python3 -m pytest -s test_cluster_performance.py --artifacts_path=/home/federamos/Desktop/Performance/artifacts --n_workers=25 --n_agents=50000 --html=report.html --self-contained-html
========================================================================================================== test session starts ==========================================================================================================
platform linux -- Python 3.9.18, pytest-7.1.2, pluggy-1.4.0
rootdir: /home/federamos/Documents/Wazuh/Repositories/wazuh-qa/tests, configfile: pytest.ini
plugins: metadata-3.1.1, html-3.1.1, testinfra-5.0.0
collected 1 item           

Setup phase took 0:27:28s (2024/08/14 02:31:18 - 2024/08/14 02:58:46).
Stable phase took 0:00:52s (2024/08/14 02:58:46 - 2024/08/14 02:59:38).
F

=============================================================================================================== FAILURES ================================================================================================================
_______________________________________________________________________________________________________ test_cluster_performance ________________________________________________________________________________________________________

artifacts_path = '/home/federamos/Desktop/Performance/artifacts', n_workers = 25, n_agents = 50000

    def test_cluster_performance(artifacts_path, n_workers, n_agents):
        """Check that a cluster environment did not exceed certain thresholds.
    
        This test obtains various statistics (mean, max, regression coefficient) from CSVs with
        data generated in a cluster environment (resources used and duration of tasks). These
        statistics are compared with thresholds established in the data folder.
    
        Args:
            artifacts_path (str): Path where CSVs with cluster information can be found.
            n_workers (int): Number of workers folders that are expected inside the artifacts path.
            n_agents (int): Number of agents in the cluster environment.
        """
        if None in (artifacts_path, n_workers, n_agents):
            pytest.fail("Parameters '--artifacts_path=<path> --n_workers=<n_workers> --n_agents=<n_agents>' are required.")
    
        # Check if there are threshold data for the specified number of workers and agents.
        selected_conf = f"{n_workers}w_{n_agents}a"
        if selected_conf not in configurations:
            pytest.fail(f"This is not a supported configuration: {selected_conf}. "
                        f"Supported configurations are: {', '.join(configurations.keys())}.")
    
        # Check if path exists and if expected number of workers matches what is found inside artifacts.
        try:
            cluster_info = ClusterEnvInfo(artifacts_path).get_all_info()
        except FileNotFoundError:
            pytest.fail(f"Path '{artifacts_path}' could not be found or it may not follow the proper structure.")
    
        if cluster_info.get('worker_nodes', 0) != int(n_workers):
            pytest.fail(f"Information of {n_workers} workers was expected inside the artifacts folder, but "
                        f"{cluster_info.get('worker_nodes', 0)} were found.")
    
        # Calculate stats from data inside artifacts path.
        data = {'tasks': ClusterCSVTasksParser(artifacts_path).get_stats(),
                'resources': ClusterCSVResourcesParser(artifacts_path).get_stats()}
    
        if not data['tasks'] or not data['resources']:
            pytest.fail(f"Stats could not be retrieved, '{artifacts_path}' path may not exist, it is empty or it may not"
                        f" follow the proper structure.")
    
        # Compare each stat with its threshold.
        for data_name, data_stats in data.items():
            for phase, files in data_stats.items():
                for file, columns in files.items():
                    for column, nodes in columns.items():
                        for node_type, stats in nodes.items():
                            for stat, value in stats.items():
                                th_value = configurations[selected_conf][data_name][phase][file][column][node_type][stat]
                                if value[1] >= th_value:
                                    exceeded_thresholds.append({'value': value[1], 'threshold': th_value, 'stat': stat,
                                                                'column': column, 'node': value[0], 'file': file,
                                                                'phase': phase})
    
        try:
>           assert not exceeded_thresholds, 'Some thresholds were exceeded:\n- ' + '\n- '.join(
                '{stat} {column} {value} >= {threshold} ({node}, {file}, {phase})'.format(**item) for item in
                exceeded_thresholds)
E               AssertionError: Some thresholds were exceeded:
E                 - max time_spent(s) 350.007 >= 50 (worker_13, agent-info_sync, setup_phase)
E                 - mean time_spent(s) 3.48953285198556 >= 3.1 (master, agent-info_sync, setup_phase)
E                 - max time_spent(s) 349.862 >= 31 (master, agent-info_sync, setup_phase)
E                 - reg_cof USS(KB) 514.650557858156 >= 332.64 (master, wazuh-clusterd, setup_phase)
E                 - reg_cof FD 0.15431861241195627 >= 0.1 (master, wazuh-clusterd, setup_phase)
E               assert not [{'column': 'time_spent(s)', 'file': 'agent-info_sync', 'node': 'worker_13', 'phase': 'setup_phase', ...}, {'column': ...phase': 'setup_phase', ...}, {'column': 'FD', 'file': 'wazuh-clusterd', 'node': 'master', 'phase': 'setup_phase', ...}]

test_cluster_performance.py:85: AssertionError
----------------------------------------- generated html file: file:///home/federamos/Documents/Wazuh/Repositories/wazuh-qa/tests/performance/test_cluster/test_cluster_performance/report.html -----------------------------------------
======================================================================================================== short test summary info ========================================================================================================
FAILED test_cluster_performance.py::test_cluster_performance - AssertionError: Some thresholds were exceeded:
=========================================================================================================== 1 failed in 0.96s ===========================================================================================================

Cluster tasks 🔴

Artifacts: artifacts.zip

Obtained the tasks' duration manually by modifying the tests/performance/test_cluster/test_cluster_performance/test_cluster_performance.py file print the data. These were the results:

Tasks
        "setup_phase": {
            "agent-info_sync": {
                "time_spent(s)": {
                    "workers": {
                        "mean": ("worker_21", 3.6556228070175436),
                        "max": ("worker_13", 350.007),
                    },
                    "master": {
                        "mean": ("master", 3.48953285198556),
                        "max": ("master", 349.862),
                    },
                }
            },
            "integrity_check": {
                "time_spent(s)": {
                    "workers": {
                        "mean": ("worker_9", 0.11085798816568047),
                        "max": ("worker_6", 1.402),
                    },
                    "master": {
                        "mean": ("master", 0.0059390272835112695),
                        "max": ("master", 0.503),
                    },
                }
            },
            "integrity_sync": {
                "time_spent(s)": {
                    "workers": {
                        "mean": ("worker_4", 0.03929411764705883),
                        "max": ("worker_4", 0.094),
                    },
                    "master": {
                        "mean": ("master", 0.26409605911330053),
                        "max": ("master", 1.478),
                    },
                }
            },
        },
        "stable_phase": {
            "agent-info_sync": {
                "time_spent(s)": {
                    "workers": {
                        "mean": ("worker_21", 0.007333333333333335),
                        "max": ("worker_21", 0.034),
                    },
                    "master": {"mean": ("master", 0.006), "max": ("master", 0.006)},
                }
            },
            "integrity_check": {
                "time_spent(s)": {
                    "workers": {
                        "mean": ("worker_3", 0.013),
                        "max": ("worker_3", 0.032),
                    },
                    "master": {
                        "mean": ("master", 0.004028368794326242),
                        "max": ("master", 0.021),
                    },
                }
            },
        },
    },

All values are within the ranges defined in 25w_50000a_thresholds.yaml, except for the agent_info-sync.

Reliability 🔴

Artifacts: test_cluster_reliability.zip

Test Status Issues Ref.
test_cluster_connection 🟢
test_cluster_error_logs 🔴 #25212
test_check_logs_order_workers 🔴 #25212
test_check_logs_order_master 🔴 #25212
test_cluster_sync 🟢
test_cluster_task_order 🟢

Logs

The errors found in the cluster.log files of the master and worker nodes were:

Logs
Searching for errors in /home/federamos/Desktop/Performance/artifacts/master/logs/cluster.log:
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_18] [Agent-groups send] Finished in 1.238s. Updated 14 chunks. There were 1 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_16] [Agent-groups send] Finished in 1.249s. Updated 14 chunks. There were 1 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_11] [Agent-groups send] Finished in 1.267s. Updated 14 chunks. There were 1 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_13] [Agent-groups send] Finished in 1.267s. Updated 12 chunks. There were 3 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [Agent-groups send] Finished in 1.289s. Updated 0 chunks. There were 15 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_22] [Agent-groups send] Finished in 1.311s. Updated 3 chunks. There were 12 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [Agent-groups send] Finished in 1.392s. Updated 0 chunks. There were 15 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_21] [Agent-groups send] Finished in 1.332s. Updated 4 chunks. There were 11 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [Agent-groups send] Finished in 1.411s. Updated 0 chunks. There were 15 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_20] [Agent-groups send] Finished in 1.358s. Updated 6 chunks. There were 9 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [Agent-groups send] Finished in 1.329s. Updated 0 chunks. There were 15 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [Agent-groups send] Finished in 1.336s. Updated 0 chunks. There were 15 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Agent-groups send] Finished in 1.356s. Updated 0 chunks. There were 15 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [Agent-groups send] Finished in 1.317s. Updated 0 chunks. There were 15 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [Agent-groups send] Finished in 1.353s. Updated 0 chunks. There were 15 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [Agent-groups send] Finished in 1.421s. Updated 0 chunks. There were 15 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [Agent-groups send] Finished in 1.327s. Updated 0 chunks. There were 15 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [Agent-groups send] Finished in 1.341s. Updated 0 chunks. There were 15 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [Agent-groups send] Finished in 1.330s. Updated 0 chunks. There were 15 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [Agent-groups send] Finished in 1.373s. Updated 0 chunks. There were 15 chunks with errors: ['Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups', 'Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups']
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_10/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [Agent-groups recv] Wazuh-db response for chunk 4/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [Agent-groups recv] Wazuh-db response for chunk 5/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [Agent-groups recv] Wazuh-db response for chunk 6/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [Agent-groups recv] Wazuh-db response for chunk 7/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [Agent-groups recv] Wazuh-db response for chunk 8/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [Agent-groups recv] Wazuh-db response for chunk 9/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [Agent-groups recv] Wazuh-db response for chunk 10/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [Agent-groups recv] Wazuh-db response for chunk 11/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [Agent-groups recv] Wazuh-db response for chunk 12/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [Agent-groups recv] Wazuh-db response for chunk 13/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [Agent-groups recv] Wazuh-db response for chunk 14/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [Agent-groups recv] Wazuh-db response for chunk 15/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_10] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:05 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:15 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:25 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:33 ERROR: [Local 1040002] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 570478] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:35 ERROR: [Local 424433] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_11/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_11] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_11] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:05 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:15 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:25 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:33 ERROR: [Local 216308] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 576498] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:35 ERROR: [Local 198259] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_12/logs/cluster.log:
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:05 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:15 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:25 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:33 ERROR: [Local 772579] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 758267] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:35 ERROR: [Local 78732] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_13/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_13] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_13] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_13] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_13] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:06 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:16 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:26 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:34 ERROR: [Local 874649] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:35 ERROR: [Local 634170] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:36 ERROR: [Local 1021979] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_14/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [Agent-groups recv] Wazuh-db response for chunk 4/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [Agent-groups recv] Wazuh-db response for chunk 5/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [Agent-groups recv] Wazuh-db response for chunk 6/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [Agent-groups recv] Wazuh-db response for chunk 7/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [Agent-groups recv] Wazuh-db response for chunk 8/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [Agent-groups recv] Wazuh-db response for chunk 9/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [Agent-groups recv] Wazuh-db response for chunk 10/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [Agent-groups recv] Wazuh-db response for chunk 11/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [Agent-groups recv] Wazuh-db response for chunk 12/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [Agent-groups recv] Wazuh-db response for chunk 13/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [Agent-groups recv] Wazuh-db response for chunk 14/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [Agent-groups recv] Wazuh-db response for chunk 15/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_14] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:05 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:15 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:25 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:33 ERROR: [Local 819677] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 902183] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:35 ERROR: [Local 869216] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_15/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [Agent-groups recv] Wazuh-db response for chunk 4/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [Agent-groups recv] Wazuh-db response for chunk 5/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [Agent-groups recv] Wazuh-db response for chunk 6/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [Agent-groups recv] Wazuh-db response for chunk 7/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [Agent-groups recv] Wazuh-db response for chunk 8/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [Agent-groups recv] Wazuh-db response for chunk 9/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [Agent-groups recv] Wazuh-db response for chunk 10/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [Agent-groups recv] Wazuh-db response for chunk 11/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [Agent-groups recv] Wazuh-db response for chunk 12/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [Agent-groups recv] Wazuh-db response for chunk 13/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [Agent-groups recv] Wazuh-db response for chunk 14/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [Agent-groups recv] Wazuh-db response for chunk 15/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_15] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:05 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:15 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:25 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:33 ERROR: [Local 937341] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 332135] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:35 ERROR: [Local 87695] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_16/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_16] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_16] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:05 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:15 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:25 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:33 ERROR: [Local 947366] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 546315] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:35 ERROR: [Local 781957] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_17/logs/cluster.log:
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:05 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:15 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:25 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:33 ERROR: [Local 154293] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 784989] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:35 ERROR: [Local 57521] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_18/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_18] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_18] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:05 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:15 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:25 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:33 ERROR: [Local 292696] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 511660] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:35 ERROR: [Local 621510] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_19/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [Agent-groups recv] Wazuh-db response for chunk 4/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [Agent-groups recv] Wazuh-db response for chunk 5/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [Agent-groups recv] Wazuh-db response for chunk 6/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [Agent-groups recv] Wazuh-db response for chunk 7/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [Agent-groups recv] Wazuh-db response for chunk 8/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [Agent-groups recv] Wazuh-db response for chunk 9/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [Agent-groups recv] Wazuh-db response for chunk 10/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [Agent-groups recv] Wazuh-db response for chunk 11/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [Agent-groups recv] Wazuh-db response for chunk 12/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [Agent-groups recv] Wazuh-db response for chunk 13/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [Agent-groups recv] Wazuh-db response for chunk 14/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [Agent-groups recv] Wazuh-db response for chunk 15/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_19] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:06 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:16 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:26 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:34 ERROR: [Local 567518] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:35 ERROR: [Local 693697] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:36 ERROR: [Local 786859] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_1/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [Agent-groups recv] Wazuh-db response for chunk 4/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [Agent-groups recv] Wazuh-db response for chunk 5/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [Agent-groups recv] Wazuh-db response for chunk 6/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [Agent-groups recv] Wazuh-db response for chunk 7/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [Agent-groups recv] Wazuh-db response for chunk 8/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [Agent-groups recv] Wazuh-db response for chunk 9/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [Agent-groups recv] Wazuh-db response for chunk 10/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [Agent-groups recv] Wazuh-db response for chunk 11/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [Agent-groups recv] Wazuh-db response for chunk 12/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [Agent-groups recv] Wazuh-db response for chunk 13/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [Agent-groups recv] Wazuh-db response for chunk 14/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [Agent-groups recv] Wazuh-db response for chunk 15/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_1] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:03 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:13 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:23 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:31 ERROR: [Local 946046] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:32 ERROR: [Local 281765] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_20/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_20] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_20] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_20] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_20] [Agent-groups recv] Wazuh-db response for chunk 4/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_20] [Agent-groups recv] Wazuh-db response for chunk 5/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_20] [Agent-groups recv] Wazuh-db response for chunk 6/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_20] [Agent-groups recv] Wazuh-db response for chunk 7/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_20] [Agent-groups recv] Wazuh-db response for chunk 8/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_20] [Agent-groups recv] Wazuh-db response for chunk 9/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_20] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:04 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:14 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:24 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:32 ERROR: [Local 136992] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:33 ERROR: [Local 608482] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 559667] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_21/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_21] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_21] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_21] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_21] [Agent-groups recv] Wazuh-db response for chunk 4/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_21] [Agent-groups recv] Wazuh-db response for chunk 5/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_21] [Agent-groups recv] Wazuh-db response for chunk 6/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_21] [Agent-groups recv] Wazuh-db response for chunk 7/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_21] [Agent-groups recv] Wazuh-db response for chunk 8/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_21] [Agent-groups recv] Wazuh-db response for chunk 9/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_21] [Agent-groups recv] Wazuh-db response for chunk 10/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_21] [Agent-groups recv] Wazuh-db response for chunk 11/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_21] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:07 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:17 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:27 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:35 ERROR: [Local 488062] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:36 ERROR: [Local 73033] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:37 ERROR: [Local 528917] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_22/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_22] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_22] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_22] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_22] [Agent-groups recv] Wazuh-db response for chunk 4/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_22] [Agent-groups recv] Wazuh-db response for chunk 5/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_22] [Agent-groups recv] Wazuh-db response for chunk 6/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_22] [Agent-groups recv] Wazuh-db response for chunk 7/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_22] [Agent-groups recv] Wazuh-db response for chunk 8/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_22] [Agent-groups recv] Wazuh-db response for chunk 9/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_22] [Agent-groups recv] Wazuh-db response for chunk 10/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_22] [Agent-groups recv] Wazuh-db response for chunk 11/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_22] [Agent-groups recv] Wazuh-db response for chunk 12/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_22] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:06 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:16 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:26 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:34 ERROR: [Local 702652] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:35 ERROR: [Local 476546] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:36 ERROR: [Local 942544] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_23/logs/cluster.log:
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [Agent-groups recv] Wazuh-db response for chunk 4/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [Agent-groups recv] Wazuh-db response for chunk 5/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [Agent-groups recv] Wazuh-db response for chunk 6/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [Agent-groups recv] Wazuh-db response for chunk 7/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [Agent-groups recv] Wazuh-db response for chunk 8/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [Agent-groups recv] Wazuh-db response for chunk 9/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [Agent-groups recv] Wazuh-db response for chunk 10/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [Agent-groups recv] Wazuh-db response for chunk 11/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [Agent-groups recv] Wazuh-db response for chunk 12/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [Agent-groups recv] Wazuh-db response for chunk 13/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [Agent-groups recv] Wazuh-db response for chunk 14/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [Agent-groups recv] Wazuh-db response for chunk 15/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_23] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:05 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:15 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:25 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:33 ERROR: [Local 856840] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 147083] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_24/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Agent-groups recv] Wazuh-db response for chunk 4/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Agent-groups recv] Wazuh-db response for chunk 5/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Agent-groups recv] Wazuh-db response for chunk 6/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Agent-groups recv] Wazuh-db response for chunk 7/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Agent-groups recv] Wazuh-db response for chunk 8/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Agent-groups recv] Wazuh-db response for chunk 9/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Agent-groups recv] Wazuh-db response for chunk 10/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Agent-groups recv] Wazuh-db response for chunk 11/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Agent-groups recv] Wazuh-db response for chunk 12/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Agent-groups recv] Wazuh-db response for chunk 13/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Agent-groups recv] Wazuh-db response for chunk 14/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Agent-groups recv] Wazuh-db response for chunk 15/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [D API] Timeout executing API request
2024/08/14 02:56:30 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_24] [Main] Connection closed due to an unhandled error: [Errno 104] Connection reset by peer
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:05 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:15 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:25 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:33 ERROR: [Local 664344] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 532679] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:35 ERROR: [Local 58524] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_25/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [Agent-groups recv] Wazuh-db response for chunk 4/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [Agent-groups recv] Wazuh-db response for chunk 5/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [Agent-groups recv] Wazuh-db response for chunk 6/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [Agent-groups recv] Wazuh-db response for chunk 7/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [Agent-groups recv] Wazuh-db response for chunk 8/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [Agent-groups recv] Wazuh-db response for chunk 9/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [Agent-groups recv] Wazuh-db response for chunk 10/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [Agent-groups recv] Wazuh-db response for chunk 11/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [Agent-groups recv] Wazuh-db response for chunk 12/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [Agent-groups recv] Wazuh-db response for chunk 13/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [Agent-groups recv] Wazuh-db response for chunk 14/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [Agent-groups recv] Wazuh-db response for chunk 15/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_25] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:05 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:15 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:25 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:33 ERROR: [Local 792502] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 796558] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:35 ERROR: [Local 914542] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_2/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [Agent-groups recv] Wazuh-db response for chunk 4/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [Agent-groups recv] Wazuh-db response for chunk 5/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [Agent-groups recv] Wazuh-db response for chunk 6/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [Agent-groups recv] Wazuh-db response for chunk 7/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [Agent-groups recv] Wazuh-db response for chunk 8/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [Agent-groups recv] Wazuh-db response for chunk 9/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [Agent-groups recv] Wazuh-db response for chunk 10/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [Agent-groups recv] Wazuh-db response for chunk 11/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [Agent-groups recv] Wazuh-db response for chunk 12/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [Agent-groups recv] Wazuh-db response for chunk 13/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [Agent-groups recv] Wazuh-db response for chunk 14/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [Agent-groups recv] Wazuh-db response for chunk 15/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_2] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:04 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:14 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:24 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:32 ERROR: [Local 674842] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:33 ERROR: [Local 530900] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_3/logs/cluster.log:
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:04 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:14 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:24 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:33 ERROR: [Local 347335] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 752482] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_4/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [Agent-groups recv] Wazuh-db response for chunk 4/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [Agent-groups recv] Wazuh-db response for chunk 5/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [Agent-groups recv] Wazuh-db response for chunk 6/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [Agent-groups recv] Wazuh-db response for chunk 7/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [Agent-groups recv] Wazuh-db response for chunk 8/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [Agent-groups recv] Wazuh-db response for chunk 9/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [Agent-groups recv] Wazuh-db response for chunk 10/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [Agent-groups recv] Wazuh-db response for chunk 11/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [Agent-groups recv] Wazuh-db response for chunk 12/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [Agent-groups recv] Wazuh-db response for chunk 13/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [Agent-groups recv] Wazuh-db response for chunk 14/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [Agent-groups recv] Wazuh-db response for chunk 15/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_4] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:04 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:14 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:24 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:32 ERROR: [Local 364239] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:33 ERROR: [Local 653745] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 911425] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_5/logs/cluster.log:
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:03 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:13 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:23 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:32 ERROR: [Local 572766] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:33 ERROR: [Local 16806] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_6/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [Agent-groups recv] Wazuh-db response for chunk 4/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [Agent-groups recv] Wazuh-db response for chunk 5/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [Agent-groups recv] Wazuh-db response for chunk 6/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [Agent-groups recv] Wazuh-db response for chunk 7/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [Agent-groups recv] Wazuh-db response for chunk 8/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [Agent-groups recv] Wazuh-db response for chunk 9/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [Agent-groups recv] Wazuh-db response for chunk 10/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [Agent-groups recv] Wazuh-db response for chunk 11/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [Agent-groups recv] Wazuh-db response for chunk 12/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [Agent-groups recv] Wazuh-db response for chunk 13/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [Agent-groups recv] Wazuh-db response for chunk 14/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [Agent-groups recv] Wazuh-db response for chunk 15/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_6] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:05 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:15 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:25 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:33 ERROR: [Local 744549] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 348914] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:35 ERROR: [Local 352591] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_7/logs/cluster.log:
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:06 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:16 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:26 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:34 ERROR: [Local 13615] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:35 ERROR: [Local 633479] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:36 ERROR: [Local 671355] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_8/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [Agent-groups recv] Wazuh-db response for chunk 4/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [Agent-groups recv] Wazuh-db response for chunk 5/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [Agent-groups recv] Wazuh-db response for chunk 6/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [Agent-groups recv] Wazuh-db response for chunk 7/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [Agent-groups recv] Wazuh-db response for chunk 8/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [Agent-groups recv] Wazuh-db response for chunk 9/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [Agent-groups recv] Wazuh-db response for chunk 10/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [Agent-groups recv] Wazuh-db response for chunk 11/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [Agent-groups recv] Wazuh-db response for chunk 12/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [Agent-groups recv] Wazuh-db response for chunk 13/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [Agent-groups recv] Wazuh-db response for chunk 14/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [Agent-groups recv] Wazuh-db response for chunk 15/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_8] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:05 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:15 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:25 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:33 ERROR: [Local 455320] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 844287] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:35 ERROR: [Local 224054] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
-------------------------------------------
Searching for errors in /home/federamos/Desktop/Performance/artifacts/worker_9/logs/cluster.log:
2024/08/14 02:48:33 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [Agent-groups recv] Wazuh-db response for chunk 1/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [Agent-groups recv] Wazuh-db response for chunk 2/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [Agent-groups recv] Wazuh-db response for chunk 3/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [Agent-groups recv] Wazuh-db response for chunk 4/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [Agent-groups recv] Wazuh-db response for chunk 5/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [Agent-groups recv] Wazuh-db response for chunk 6/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [Agent-groups recv] Wazuh-db response for chunk 7/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [Agent-groups recv] Wazuh-db response for chunk 8/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [Agent-groups recv] Wazuh-db response for chunk 9/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [Agent-groups recv] Wazuh-db response for chunk 10/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [Agent-groups recv] Wazuh-db response for chunk 11/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [Agent-groups recv] Wazuh-db response for chunk 12/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [Agent-groups recv] Wazuh-db response for chunk 13/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [Agent-groups recv] Wazuh-db response for chunk 14/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:48:34 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [Agent-groups recv] Wazuh-db response for chunk 15/15 was not "ok": Error 2007 - Error retrieving data from Wazuh DB: An error occurred during the set of the groups
2024/08/14 02:55:21 ERROR: [Worker CLUSTER-Workload_benchmarks_metrics_B630_manager_9] [D API] Timeout executing API request
2024/08/14 02:56:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:56:50 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:00 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:10 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:20 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:30 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:57:40 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:05 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:15 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:25 ERROR: [Local Server] [Main] Could not connect to master. Trying again in 10 seconds.
2024/08/14 02:58:33 ERROR: [Local 606251] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master
2024/08/14 02:58:34 ERROR: [Local 971995] [Main] Internal error processing request 'b'sendsync'': Error 3023 - Worker node is not connected to master

Some of the errors found are due to expected workers' disconnections during the test, the other ones are related to wazuh-db. The following Issue was created: #25212

Artifacts with all the logs artifacts.zip

@fdalmaup
Copy link
Member

Review

As correctly mentioned, the errors seem to be directly related to wazuh-db and a possible bug that did not allow the cluster to carry out the Agent-groups task properly.

LGTM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
No open projects
Status: Done
Development

No branches or pull requests

3 participants