mirror of
https://github.com/valitydev/wazuh-kibana-app.git
synced 2024-11-06 09:55:18 +00:00
Allowing to show monitoring data without ingesting information
This commit is contained in:
parent
c3f0f83683
commit
35d071ed16
@ -85,7 +85,10 @@
|
||||
# ------------------------------ wazuh-monitoring ------------------------------
|
||||
#
|
||||
# Custom setting to enable/disable wazuh-monitoring indices.
|
||||
# Default: enabled
|
||||
# Values: true, false, worker
|
||||
# If worker is given as value, the app will show the Agents status visualization but won't insert data
|
||||
# on wazuh-monitoring indices
|
||||
# Default: true
|
||||
#wazuh.monitoring.enabled: true
|
||||
#
|
||||
# Custom setting to set the frequency for wazuh-monitoring indices cron task.
|
||||
|
@ -30,7 +30,7 @@ export default (server, options) => {
|
||||
const configFile = getConfiguration();
|
||||
|
||||
ENABLED = configFile && typeof configFile['wazuh.monitoring.enabled'] !== 'undefined' ?
|
||||
configFile['wazuh.monitoring.enabled'] :
|
||||
configFile['wazuh.monitoring.enabled'] && configFile['wazuh.monitoring.enabled'] !== 'worker' :
|
||||
ENABLED;
|
||||
FREQUENCY = configFile && typeof configFile['wazuh.monitoring.frequency'] !== 'undefined' ?
|
||||
configFile['wazuh.monitoring.frequency'] :
|
||||
|
Loading…
Reference in New Issue
Block a user