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

Update Cluster configuration with the haproxy helper settings #6653

1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ All notable changes to the Wazuh app project will be documented in this file.
- Added macOS log collector tab [#6545](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6545)
- Add ability to disable the edition of configuration through API endpoints and UI [#6557](https://github.com/wazuh/wazuh-dashboard-plugins/issues/6557)
- Added journald log collector tab [#6572](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6572)
- Added HAProxy helper settings to cluster configuration [#6653](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6653)

### Changed

Expand Down
19 changes: 18 additions & 1 deletion docker/imposter/cluster/configuration/com_cluster.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,24 @@
"port": 1516,
"bind_addr": "0.0.0.0",
"nodes": ["0.0.0.0"],
"hidden": "no"
"hidden": "no",
"haproxy_helper": {
"haproxy_disabled": false,
"haproxy_address": "wazuh-proxy",
"haproxy_user": "haproxy",
"haproxy_password": "haproxy",
"frequency": 60,
"agent_reconnection_stability_time": 60,
"agent_chunk_size": 300,
"haproxy_protocol": "http",
"haproxy_backend": "wazuh_cluster",
"agent_reconnection_time": 5,
"haproxy_port": 5555,
"haproxy_resolver": null,
"imbalance_tolerance": 0.1,
"remove_disconnected_node_after": 240,
"excluded_nodes": []
}
}
],
"total_affected_items": 1,
Expand Down
Loading
Loading