diff --git a/CHANGELOG.md b/CHANGELOG.md index 173440e5..b9dde71a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file. ### Changed +- Dashboard settings added ([#1998](https://github.com/wazuh/wazuh-docker/pull/1998)) - Add filebeat config file in the PERMANENT_DATA_EXCP list ([#1898](https://github.com/wazuh/wazuh-docker/pull/1898)) - Change validation of existing certs tool in S3 buckets ([#1880](https://github.com/wazuh/wazuh-docker/pull/1880)) diff --git a/multi-node/config/wazuh_dashboard/opensearch_dashboards.yml b/multi-node/config/wazuh_dashboard/opensearch_dashboards.yml index 207b8b66..840f8d3f 100644 --- a/multi-node/config/wazuh_dashboard/opensearch_dashboards.yml +++ b/multi-node/config/wazuh_dashboard/opensearch_dashboards.yml @@ -13,4 +13,6 @@ uiSettings.overrides.defaultRoute: /app/wz-home # Session expiration settings opensearch_security.cookie.ttl: 900000 opensearch_security.session.ttl: 900000 -opensearch_security.session.keepalive: true \ No newline at end of file +opensearch_security.session.keepalive: true +assistant.chat.enabled: true +data_source.enabled: true diff --git a/single-node/config/wazuh_dashboard/opensearch_dashboards.yml b/single-node/config/wazuh_dashboard/opensearch_dashboards.yml index 9e8fb46b..c992e6f3 100644 --- a/single-node/config/wazuh_dashboard/opensearch_dashboards.yml +++ b/single-node/config/wazuh_dashboard/opensearch_dashboards.yml @@ -13,4 +13,6 @@ uiSettings.overrides.defaultRoute: /app/wz-home # Session expiration settings opensearch_security.cookie.ttl: 900000 opensearch_security.session.ttl: 900000 -opensearch_security.session.keepalive: true \ No newline at end of file +opensearch_security.session.keepalive: true +assistant.chat.enabled: true +data_source.enabled: true