mirror of
https://github.com/valitydev/wazuh-kibana-app.git
synced 2024-11-06 09:55:18 +00:00
1a792ccc87
- Created 2 constants to control these settings - Set shards: 1 and replicas: 0 - Removed depending of values of wazuh alerts indices configuration
22 lines
900 B
JavaScript
22 lines
900 B
JavaScript
/*
|
|
* Wazuh app - Wazuh Constants file
|
|
* Copyright (C) 2015-2020 Wazuh, Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Find more information about this on the LICENSE file.
|
|
*/
|
|
|
|
export const WAZUH_ALERTS_PREFIX = "wazuh-alerts-";
|
|
export const WAZUH_ALERTS_PATTERN = "wazuh-alerts-*";
|
|
export const WAZUH_MONITORING_PREFIX = "wazuh-monitoring-";
|
|
export const WAZUH_MONITORING_PATTERN = "wazuh-monitoring-*";
|
|
export const WAZUH_SAMPLE_ALERT_PREFIX = "wazuh-alerts-4.x-";
|
|
export const WAZUH_ROLE_ADMINISTRATOR_ID = 1;
|
|
export const WAZUH_ROLE_ADMINISTRATOR_NAME = 'administrator';
|
|
export const WAZUH_SAMPLE_ALERTS_INDEX_SHARDS = 1;
|
|
export const WAZUH_SAMPLE_ALERTS_INDEX_REPLICAS = 0;
|