-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #157 from wazuh/merge-4.10.0-into-4.10.1
Merge 4.10.0 into 4.10.1
- Loading branch information
Showing
7 changed files
with
74 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
nodes: | ||
# Wazuh indexer nodes | ||
indexer: | ||
- name: node-1 | ||
ip: "<indexer-node-ip>" | ||
#- name: node-2 | ||
# ip: "<indexer-node-ip>" | ||
#- name: node-3 | ||
# ip: "<indexer-node-ip>" | ||
|
||
# Wazuh server nodes | ||
# If there is more than one Wazuh server | ||
# node, each one must have a node_type | ||
server: | ||
- name: wazuh-1 | ||
ip: "<wazuh-manager-ip>" | ||
# node_type: master | ||
#- name: wazuh-2 | ||
# ip: "<wazuh-manager-ip>" | ||
# node_type: worker | ||
#- name: wazuh-3 | ||
# ip: "<wazuh-manager-ip>" | ||
# node_type: worker | ||
|
||
# Wazuh dashboard nodes | ||
dashboard: | ||
- name: dashboard | ||
ip: "<dashboard-node-ip>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Wazuh - Filebeat configuration file | ||
output.elasticsearch: | ||
hosts: ["127.0.0.1:9200"] | ||
protocol: https | ||
username: ${username} | ||
password: ${password} | ||
ssl.certificate_authorities: | ||
- /etc/filebeat/certs/root-ca.pem | ||
ssl.certificate: "/etc/filebeat/certs/filebeat.pem" | ||
ssl.key: "/etc/filebeat/certs/filebeat-key.pem" | ||
setup.template.json.enabled: true | ||
setup.template.json.path: '/etc/filebeat/wazuh-template.json' | ||
setup.template.json.name: 'wazuh' | ||
setup.ilm.overwrite: true | ||
setup.ilm.enabled: false | ||
|
||
filebeat.modules: | ||
- module: wazuh | ||
alerts: | ||
enabled: true | ||
archives: | ||
enabled: false | ||
|
||
logging.level: info | ||
logging.to_files: true | ||
logging.files: | ||
path: /var/log/filebeat | ||
name: filebeat | ||
keepfiles: 7 | ||
permissions: 0644 | ||
|
||
logging.metrics.enabled: false | ||
|
||
seccomp: | ||
default_action: allow | ||
syscalls: | ||
- action: allow | ||
names: | ||
- rseq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters