Nessuna descrizione

wazuh.yml 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. ---
  2. #
  3. # Wazuh app - App configuration file
  4. # Copyright (C) 2017, Wazuh Inc.
  5. #
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # Find more information about this on the LICENSE file.
  12. #
  13. # ======================== Wazuh app configuration file ========================
  14. #
  15. # Please check the documentation for more information on configuration options:
  16. # https://documentation.wazuh.com/current/installation-guide/index.html
  17. #
  18. # Also, you can check our repository:
  19. # https://github.com/wazuh/wazuh-dashboard-plugins
  20. #
  21. # ------------------------------- Index patterns -------------------------------
  22. #
  23. # Default index pattern to use.
  24. #pattern: wazuh-alerts-*
  25. #
  26. # ----------------------------------- Checks -----------------------------------
  27. #
  28. # Defines which checks must to be consider by the healthcheck
  29. # step once the Wazuh app starts. Values must to be true or false.
  30. #checks.pattern : true
  31. #checks.template: true
  32. #checks.api : true
  33. #checks.setup : true
  34. #checks.metaFields: true
  35. #
  36. # --------------------------------- Extensions ---------------------------------
  37. #
  38. # Defines which extensions should be activated when you add a new API entry.
  39. # You can change them after Wazuh app starts.
  40. # Values must to be true or false.
  41. #extensions.pci : true
  42. #extensions.gdpr : true
  43. #extensions.hipaa : true
  44. #extensions.nist : true
  45. #extensions.tsc : true
  46. #extensions.audit : true
  47. #extensions.oscap : false
  48. #extensions.ciscat : false
  49. #extensions.aws : false
  50. #extensions.gcp : false
  51. #extensions.virustotal: false
  52. #extensions.osquery : false
  53. #extensions.docker : false
  54. #
  55. # ---------------------------------- Time out ----------------------------------
  56. #
  57. # Defines maximum timeout to be used on the Wazuh app requests.
  58. # It will be ignored if it is bellow 1500.
  59. # It means milliseconds before we consider a request as failed.
  60. # Default: 20000
  61. #timeout: 20000
  62. #
  63. # -------------------------------- API selector --------------------------------
  64. #
  65. # Defines if the user is allowed to change the selected
  66. # API directly from the Wazuh app top menu.
  67. # Default: true
  68. #api.selector: true
  69. #
  70. # --------------------------- Index pattern selector ---------------------------
  71. #
  72. # Defines if the user is allowed to change the selected
  73. # index pattern directly from the Wazuh app top menu.
  74. # Default: true
  75. #ip.selector: true
  76. #
  77. # List of index patterns to be ignored
  78. #ip.ignore: []
  79. #
  80. # ------------------------------ wazuh-monitoring ------------------------------
  81. #
  82. # Custom setting to enable/disable wazuh-monitoring indices.
  83. # Values: true, false, worker
  84. # If worker is given as value, the app will show the Agents status
  85. # visualization but won't insert data on wazuh-monitoring indices.
  86. # Default: true
  87. #wazuh.monitoring.enabled: true
  88. #
  89. # Custom setting to set the frequency for wazuh-monitoring indices cron task.
  90. # Default: 900 (s)
  91. #wazuh.monitoring.frequency: 900
  92. #
  93. # Configure wazuh-monitoring-* indices shards and replicas.
  94. #wazuh.monitoring.shards: 2
  95. #wazuh.monitoring.replicas: 0
  96. #
  97. # Configure wazuh-monitoring-* indices custom creation interval.
  98. # Values: h (hourly), d (daily), w (weekly), m (monthly)
  99. # Default: d
  100. #wazuh.monitoring.creation: d
  101. #
  102. # Default index pattern to use for Wazuh monitoring
  103. #wazuh.monitoring.pattern: wazuh-monitoring-*
  104. #
  105. # --------------------------------- wazuh-cron ----------------------------------
  106. #
  107. # Customize the index prefix of predefined jobs
  108. # This change is not retroactive, if you change it new indexes will be created
  109. # cron.prefix: test
  110. #
  111. # ------------------------------ wazuh-statistics -------------------------------
  112. #
  113. # Custom setting to enable/disable statistics tasks.
  114. #cron.statistics.status: true
  115. #
  116. # Enter the ID of the APIs you want to save data from, leave this empty to run
  117. # the task on all configured APIs
  118. #cron.statistics.apis: []
  119. #
  120. # Define the frequency of task execution using cron schedule expressions
  121. #cron.statistics.interval: 0 0 * * * *
  122. #
  123. # Define the name of the index in which the documents are to be saved.
  124. #cron.statistics.index.name: statistics
  125. #
  126. # Define the interval in which the index will be created
  127. #cron.statistics.index.creation: w
  128. #
  129. # ------------------------------- App privileges --------------------------------
  130. #admin: true
  131. #
  132. # ---------------------------- Hide manager alerts ------------------------------
  133. # Hide the alerts of the manager in all dashboards and discover
  134. #hideManagerAlerts: false
  135. #
  136. # ------------------------------- App logging level -----------------------------
  137. # Set the logging level for the Wazuh App log files.
  138. # Default value: info
  139. # Allowed values: info, debug
  140. #logs.level: info
  141. #
  142. # -------------------------------- Enrollment DNS -------------------------------
  143. # Set the variable WAZUH_REGISTRATION_SERVER in agents deployment.
  144. # Default value: ''
  145. #enrollment.dns: ''
  146. #
  147. #-------------------------------- API entries -----------------------------------
  148. #The following configuration is the default structure to define an API entry.
  149. #
  150. #hosts:
  151. # - <id>:
  152. # url: http(s)://<url>
  153. # port: <port>
  154. # username: <username>
  155. # password: <password>