mirror of
https://github.com/wazuh/wazuh-indexer-plugins.git
synced 2025-12-10 12:50:43 -06:00
Replace time-series indices with data streams (#652)
* Use v2 index templates * Replace stateless indices with data streams Replace legacy index template with v2 index templates * Clean-up and document code * Update 5_builderpackage_plugins_onpush.yml Signed-off-by: Álex Ruiz Becerra <alejandro.ruiz.becerra@wazuh.com> * Downgrade jackson to 2.18.2 to match OpenSearch's version * Adapt tests * Divide testClusters into two separates one to fix the test and allow the run * Format files * Fix index patterns and data streams creation --------- Signed-off-by: Álex Ruiz Becerra <alejandro.ruiz.becerra@wazuh.com> Co-authored-by: Jorge Sanchez <jorge.sanchez@wazuh.com>
This commit is contained in:
parent
daa70b6e0b
commit
b8879394b8
@ -55,6 +55,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
- Restructuring of the repository tooling [(#625)](https://github.com/wazuh/wazuh-indexer-plugins/pull/625)
|
||||
- Fix mdbook to version 0.4.x [(#627)](https://github.com/wazuh/wazuh-indexer-plugins/pull/627)
|
||||
- Adapt WCS generation script to save the ECS flat of stateless module [(#646)](https://github.com/wazuh/wazuh-indexer-plugins/pull/646)
|
||||
- Replace time-series indices with data streams [(#562)](https://github.com/wazuh/wazuh-indexer-plugins/pull/562)
|
||||
|
||||
### Deprecated
|
||||
-
|
||||
|
||||
@ -3,9 +3,9 @@
|
||||
The `wazuh-indexer-setup` plugin is a module composing the Wazuh Indexer responsible for the initialization of the indices required by Wazuh to store all the data gathered and generated by other Central Components, such as the agents and the server (engine).
|
||||
|
||||
The Wazuh Indexer Setup Plugin in responsible for:
|
||||
- Create the index templates, to define the mappings and settings of the indices.
|
||||
- Create the initial indices. We distinguish between **stateful** and **stateless** indices. Stateful indices are unique, and its data is update over time (agents' inventory), stateless indices are rotated and static (alerts).
|
||||
- For stateless indices, it creates the indices aliases and lifecycle policies for rollover.
|
||||
- Create the index templates, to define the mappings and settings for the indices.
|
||||
- Create the initial indices. We distinguish between **stateful** and **stream** indices. While stream indices contain immutable time-series data and are rolled over periodically, stateful indices store dynamic data that can change over time and reside in a single index.
|
||||
- Stream indices are created with a data stream configuration and an ISM rollover policy.
|
||||
|
||||
## Indices
|
||||
|
||||
|
||||
@ -53,12 +53,10 @@ function detect_modified_modules() {
|
||||
modified_files=$(git diff --name-only origin/"$BASE_BRANCH")
|
||||
for file in $modified_files; do
|
||||
if [[ $file == ecs/state* && ( $file == *.yml || $file == *.json ) ]]; then
|
||||
matched=false
|
||||
# Try to match the file to one of the known module keys for exact detection
|
||||
for key in "${!module_to_file[@]}"; do
|
||||
if [[ $file == ecs/$key/* || $file == ecs/$key ]]; then
|
||||
ecs_module="$key"
|
||||
matched=true
|
||||
break
|
||||
fi
|
||||
done
|
||||
@ -157,7 +155,7 @@ function copy_files() {
|
||||
echo "---> Index templates"
|
||||
local destination_file
|
||||
local resources_path="plugins/setup/src/main/resources"
|
||||
local mappings_path="mappings/${ECS_VERSION}/generated/elasticsearch/legacy/template.json"
|
||||
local mappings_path="mappings/${ECS_VERSION}/generated/elasticsearch/legacy/opensearch-template.json"
|
||||
for ecs_module in "${modules_to_update[@]}"; do
|
||||
# Copying index templates to the initialization plugin resources folder
|
||||
destination_file=${module_to_file[$ecs_module]}
|
||||
|
||||
@ -74,14 +74,28 @@ generate_mappings() {
|
||||
fi
|
||||
|
||||
# Transform legacy index template for OpenSearch compatibility
|
||||
jq '{
|
||||
"index_patterns": .index_patterns,
|
||||
"priority": .order,
|
||||
"template": {
|
||||
"settings": .settings,
|
||||
"mappings": .mappings
|
||||
}
|
||||
}' "$in_file" >"$out_dir/generated/elasticsearch/legacy/opensearch-template.json"
|
||||
if [[ "$ecs_module" =~ "stateless/" ]]; then
|
||||
# Transform time-series templates to use data streams
|
||||
jq '{
|
||||
"index_patterns": .index_patterns,
|
||||
"priority": .order,
|
||||
"data_stream": {},
|
||||
"template": {
|
||||
"settings": .settings,
|
||||
"mappings": .mappings
|
||||
}
|
||||
}' "$in_file" >"$out_dir/generated/elasticsearch/legacy/opensearch-template.json"
|
||||
else
|
||||
# Stateful templates remain unchanged except for the formatting
|
||||
jq '{
|
||||
"index_patterns": .index_patterns,
|
||||
"priority": .order,
|
||||
"template": {
|
||||
"settings": .settings,
|
||||
"mappings": .mappings
|
||||
}
|
||||
}' "$in_file" >"$out_dir/generated/elasticsearch/legacy/opensearch-template.json"
|
||||
fi
|
||||
|
||||
echo "Mappings saved to $out_dir"
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-access-management-*"
|
||||
"wazuh-events-v5-access-management*"
|
||||
],
|
||||
"order": 1,
|
||||
"settings": {
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-access-management-*"
|
||||
"wazuh-events-v5-access-management*"
|
||||
],
|
||||
"priority": 1,
|
||||
"data_stream": {},
|
||||
"template": {
|
||||
"settings": {
|
||||
"plugins.index_state_management.rollover_alias": "wazuh-events-v5-access-management",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-applications-*"
|
||||
"wazuh-events-v5-applications*"
|
||||
],
|
||||
"order": 1,
|
||||
"settings": {
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-applications-*"
|
||||
"wazuh-events-v5-applications*"
|
||||
],
|
||||
"priority": 1,
|
||||
"data_stream": {},
|
||||
"template": {
|
||||
"settings": {
|
||||
"plugins.index_state_management.rollover_alias": "wazuh-events-v5-applications",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-cloud-services-aws-*"
|
||||
"wazuh-events-v5-cloud-services-aws*"
|
||||
],
|
||||
"order": 10,
|
||||
"settings": {
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-cloud-services-aws-*"
|
||||
"wazuh-events-v5-cloud-services-aws*"
|
||||
],
|
||||
"priority": 10,
|
||||
"data_stream": {},
|
||||
"template": {
|
||||
"settings": {
|
||||
"plugins.index_state_management.rollover_alias": "wazuh-events-v5-cloud-services-aws",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-cloud-services-azure-*"
|
||||
"wazuh-events-v5-cloud-services-azure*"
|
||||
],
|
||||
"order": 10,
|
||||
"settings": {
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-cloud-services-azure-*"
|
||||
"wazuh-events-v5-cloud-services-azure*"
|
||||
],
|
||||
"priority": 10,
|
||||
"data_stream": {},
|
||||
"template": {
|
||||
"settings": {
|
||||
"plugins.index_state_management.rollover_alias": "wazuh-events-v5-cloud-services-azure",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-cloud-services-gcp-*"
|
||||
"wazuh-events-v5-cloud-services-gcp*"
|
||||
],
|
||||
"order": 10,
|
||||
"settings": {
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-cloud-services-gcp-*"
|
||||
"wazuh-events-v5-cloud-services-gcp*"
|
||||
],
|
||||
"priority": 10,
|
||||
"data_stream": {},
|
||||
"template": {
|
||||
"settings": {
|
||||
"plugins.index_state_management.rollover_alias": "wazuh-events-v5-cloud-services-gcp",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-cloud-services-*"
|
||||
"wazuh-events-v5-cloud-services*"
|
||||
],
|
||||
"order": 1,
|
||||
"settings": {
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-cloud-services-*"
|
||||
"wazuh-events-v5-cloud-services*"
|
||||
],
|
||||
"priority": 1,
|
||||
"data_stream": {},
|
||||
"template": {
|
||||
"settings": {
|
||||
"plugins.index_state_management.rollover_alias": "wazuh-events-v5-cloud-services",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-alerts-v5-*"
|
||||
"wazuh-alerts-v5*"
|
||||
],
|
||||
"order": 1,
|
||||
"settings": {
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-alerts-v5-*"
|
||||
"wazuh-alerts-v5*"
|
||||
],
|
||||
"priority": 1,
|
||||
"data_stream": {},
|
||||
"template": {
|
||||
"settings": {
|
||||
"plugins.index_state_management.rollover_alias": "wazuh-alerts-v5",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-network-activity-*"
|
||||
"wazuh-events-v5-network-activity*"
|
||||
],
|
||||
"order": 1,
|
||||
"settings": {
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-network-activity-*"
|
||||
"wazuh-events-v5-network-activity*"
|
||||
],
|
||||
"priority": 1,
|
||||
"data_stream": {},
|
||||
"template": {
|
||||
"settings": {
|
||||
"plugins.index_state_management.rollover_alias": "wazuh-events-v5-network-activity",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-other-*"
|
||||
"wazuh-events-v5-other*"
|
||||
],
|
||||
"order": 1,
|
||||
"settings": {
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-other-*"
|
||||
"wazuh-events-v5-other*"
|
||||
],
|
||||
"priority": 1,
|
||||
"data_stream": {},
|
||||
"template": {
|
||||
"settings": {
|
||||
"plugins.index_state_management.rollover_alias": "wazuh-events-v5-other",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-security-*"
|
||||
"wazuh-events-v5-security*"
|
||||
],
|
||||
"order": 1,
|
||||
"settings": {
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-security-*"
|
||||
"wazuh-events-v5-security*"
|
||||
],
|
||||
"priority": 1,
|
||||
"data_stream": {},
|
||||
"template": {
|
||||
"settings": {
|
||||
"plugins.index_state_management.rollover_alias": "wazuh-events-v5-security",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-system-activity-*"
|
||||
"wazuh-events-v5-system-activity*"
|
||||
],
|
||||
"order": 1,
|
||||
"settings": {
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
{
|
||||
"index_patterns": [
|
||||
"wazuh-events-v5-system-activity-*"
|
||||
"wazuh-events-v5-system-activity*"
|
||||
],
|
||||
"priority": 1,
|
||||
"data_stream": {},
|
||||
"template": {
|
||||
"settings": {
|
||||
"plugins.index_state_management.rollover_alias": "wazuh-events-v5-system-activity",
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
{
|
||||
"index_patterns": ["wazuh-events-v5-<integration-name>-*"],
|
||||
"index_patterns": ["wazuh-events-v5-<integration-name>*"],
|
||||
"order": "<priority>",
|
||||
"settings": {
|
||||
"plugins.index_state_management.rollover_alias": "wazuh-events-v5-<integration-name>",
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
{
|
||||
"index_patterns": ["wazuh-events-v5-<integration-name>-*"],
|
||||
"index_patterns": ["wazuh-events-v5-<integration-name>*"],
|
||||
"priority": "<priority>",
|
||||
"data_stream": {},
|
||||
"template": {
|
||||
"settings": {
|
||||
"plugins.index_state_management.rollover_alias": "wazuh-events-v5-<integration-name>",
|
||||
|
||||
@ -1,24 +1,25 @@
|
||||
import org.opensearch.gradle.test.RestIntegTestTask
|
||||
|
||||
import java.util.concurrent.Callable
|
||||
|
||||
buildscript {
|
||||
ext {
|
||||
opensearch_version = System.getProperty("opensearch.version", "3.3.2-SNAPSHOT")
|
||||
opensearch_build = opensearch_version.replace("-SNAPSHOT","") + ".0"
|
||||
wazuh_version = System.getProperty("version", "5.0.0")
|
||||
revision = System.getProperty("revision", "0")
|
||||
}
|
||||
ext {
|
||||
opensearch_version = System.getProperty("opensearch.version", "3.3.2-SNAPSHOT")
|
||||
opensearch_build = opensearch_version.replace("-SNAPSHOT", "") + ".0"
|
||||
wazuh_version = System.getProperty("version", "5.0.0")
|
||||
revision = System.getProperty("revision", "0")
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
maven { url "https://ci.opensearch.org/ci/dbc/snapshots/maven/" }
|
||||
mavenCentral()
|
||||
maven { url "https://plugins.gradle.org/m2/" }
|
||||
}
|
||||
repositories {
|
||||
mavenLocal()
|
||||
maven { url "https://ci.opensearch.org/ci/dbc/snapshots/maven/" }
|
||||
mavenCentral()
|
||||
maven { url "https://plugins.gradle.org/m2/" }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
classpath "org.opensearch.gradle:build-tools:${opensearch_version}"
|
||||
}
|
||||
dependencies {
|
||||
classpath "org.opensearch.gradle:build-tools:${opensearch_version}"
|
||||
}
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
@ -37,56 +38,61 @@ def pathToPlugin = 'setup'
|
||||
def pluginClassName = 'SetupPlugin'
|
||||
|
||||
publishing {
|
||||
publications {
|
||||
pluginZip(MavenPublication) { publication ->
|
||||
pom {
|
||||
name = pluginName
|
||||
description = pluginDescription
|
||||
licenses {
|
||||
license {
|
||||
name = "GNU Affero General Public License (AGPL) version 3.0"
|
||||
url = "http://www.gnu.org/licenses/agpl-3.0.txt"
|
||||
}
|
||||
}
|
||||
developers {
|
||||
developer {
|
||||
name = "Wazuh"
|
||||
url = "https://wazuh.com"
|
||||
}
|
||||
}
|
||||
}
|
||||
publications {
|
||||
pluginZip(MavenPublication) { publication ->
|
||||
pom {
|
||||
name = pluginName
|
||||
description = pluginDescription
|
||||
licenses {
|
||||
license {
|
||||
name = "GNU Affero General Public License (AGPL) version 3.0"
|
||||
url = "http://www.gnu.org/licenses/agpl-3.0.txt"
|
||||
}
|
||||
}
|
||||
developers {
|
||||
developer {
|
||||
name = "Wazuh"
|
||||
url = "https://wazuh.com"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
allprojects {
|
||||
group = "${projectPath}"
|
||||
version = "${wazuh_version}" + ".${revision}"
|
||||
targetCompatibility = JavaVersion.VERSION_21
|
||||
sourceCompatibility = JavaVersion.VERSION_21
|
||||
group = "${projectPath}"
|
||||
version = "${wazuh_version}" + ".${revision}"
|
||||
targetCompatibility = JavaVersion.VERSION_21
|
||||
sourceCompatibility = JavaVersion.VERSION_21
|
||||
}
|
||||
|
||||
opensearchplugin {
|
||||
name pluginName
|
||||
description pluginDescription
|
||||
classname "${projectPath}.${pathToPlugin}.${pluginClassName}"
|
||||
extendedPlugins = ['opensearch-index-management']
|
||||
licenseFile rootProject.file('LICENSE.txt')
|
||||
noticeFile rootProject.file('NOTICE.txt')
|
||||
name pluginName
|
||||
description pluginDescription
|
||||
classname "${projectPath}.${pathToPlugin}.${pluginClassName}"
|
||||
extendedPlugins = ['opensearch-index-management']
|
||||
licenseFile rootProject.file('LICENSE.txt')
|
||||
noticeFile rootProject.file('NOTICE.txt')
|
||||
}
|
||||
|
||||
configurations {
|
||||
zipArchive
|
||||
zipArchive
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation "org.apache.logging.log4j:log4j-slf4j-impl:2.25.2"
|
||||
implementation "org.slf4j:slf4j-api:2.0.17"
|
||||
implementation "org.apache.logging.log4j:log4j-slf4j-impl:2.25.2"
|
||||
implementation "org.slf4j:slf4j-api:2.0.17"
|
||||
|
||||
// Job Scheduler & ISM stuff (required for the initialization of ISM policies)
|
||||
zipArchive group: 'org.opensearch.plugin', name: 'opensearch-job-scheduler', version: opensearch_build
|
||||
zipArchive group: 'org.opensearch.plugin', name: 'opensearch-index-management', version: opensearch_build
|
||||
compileOnly "org.opensearch:opensearch-job-scheduler-spi:${opensearch_build}"
|
||||
// Use Jackson provided by OpenSearch (2.18.2) - only for compile time
|
||||
compileOnly 'com.fasterxml.jackson.core:jackson-core:2.18.2'
|
||||
implementation 'com.fasterxml.jackson.core:jackson-databind:2.18.2'
|
||||
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.18.2'
|
||||
|
||||
// Job Scheduler & ISM stuff (required for the initialization of ISM policies)
|
||||
zipArchive group: 'org.opensearch.plugin', name: 'opensearch-job-scheduler', version: opensearch_build
|
||||
zipArchive group: 'org.opensearch.plugin', name: 'opensearch-index-management', version: opensearch_build
|
||||
compileOnly "org.opensearch:opensearch-job-scheduler-spi:${opensearch_build}"
|
||||
}
|
||||
|
||||
// No need to validate license headers since spotless checks and applies it
|
||||
@ -102,30 +108,30 @@ validateNebulaPom.enabled = false
|
||||
dependencyLicenses.enabled = false
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
maven { url "https://ci.opensearch.org/ci/dbc/snapshots/maven/" }
|
||||
mavenCentral()
|
||||
maven { url "https://plugins.gradle.org/m2/" }
|
||||
mavenLocal()
|
||||
maven { url "https://ci.opensearch.org/ci/dbc/snapshots/maven/" }
|
||||
mavenCentral()
|
||||
maven { url "https://plugins.gradle.org/m2/" }
|
||||
}
|
||||
|
||||
test {
|
||||
include '**/*Tests.class'
|
||||
include '**/*Tests.class'
|
||||
}
|
||||
|
||||
def getPlugin(pluginName) {
|
||||
provider(new Callable<RegularFile>() {
|
||||
provider(new Callable<RegularFile>() {
|
||||
@Override
|
||||
RegularFile call() throws Exception {
|
||||
return new RegularFile() {
|
||||
@Override
|
||||
RegularFile call() throws Exception {
|
||||
return new RegularFile() {
|
||||
@Override
|
||||
File getAsFile() {
|
||||
return configurations.zipArchive.asFileTree.matching {
|
||||
include String.format("**/%s*", pluginName)
|
||||
}.singleFile
|
||||
}
|
||||
}
|
||||
File getAsFile() {
|
||||
return configurations.zipArchive.asFileTree.matching {
|
||||
include String.format("**/%s*", pluginName)
|
||||
}.singleFile
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
task integTest(type: RestIntegTestTask) {
|
||||
@ -136,40 +142,54 @@ task integTest(type: RestIntegTestTask) {
|
||||
tasks.named("check").configure { dependsOn(integTest) }
|
||||
|
||||
integTest {
|
||||
// The --debug-jvm command-line option makes the cluster debuggable; this makes the tests debuggable
|
||||
if (System.getProperty("test.debug") != null) {
|
||||
jvmArgs '-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005'
|
||||
}
|
||||
// The --debug-jvm command-line option makes the cluster debuggable; this makes the tests debuggable
|
||||
if (System.getProperty("test.debug") != null) {
|
||||
jvmArgs '-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
testClusters.integTest {
|
||||
testClusters {
|
||||
integTest {
|
||||
plugin(getPlugin("opensearch-job-scheduler"))
|
||||
plugin(getPlugin("opensearch-index-management"))
|
||||
|
||||
testDistribution = "INTEG_TEST"
|
||||
|
||||
// This installs our plugin into the testClusters
|
||||
plugin(project.tasks.bundlePlugin.archiveFile)
|
||||
|
||||
// The --debug-jvm command-line option makes the cluster debuggable; this makes the tests debuggable
|
||||
if (System.getProperty("cluster.debug") != null) {
|
||||
jvmArgs '-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005'
|
||||
jvmArgs '-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005'
|
||||
}
|
||||
}
|
||||
|
||||
runCluster {
|
||||
plugin(getPlugin("opensearch-job-scheduler"))
|
||||
plugin(getPlugin("opensearch-index-management"))
|
||||
|
||||
testDistribution = "ARCHIVE"
|
||||
|
||||
plugin(project.tasks.bundlePlugin.archiveFile)
|
||||
|
||||
if (System.getProperty("run.cluster.debug") != null) {
|
||||
jvmArgs '-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
run {
|
||||
useCluster testClusters.integTest
|
||||
useCluster testClusters.runCluster
|
||||
}
|
||||
|
||||
// updateVersion: Task to auto update version to the next development iteration
|
||||
task updateVersion {
|
||||
onlyIf { System.getProperty('newVersion') }
|
||||
doLast {
|
||||
ext.newVersion = System.getProperty('newVersion')
|
||||
println "Setting version to ${newVersion}."
|
||||
// String tokenization to support -SNAPSHOT
|
||||
ant.replaceregexp(file: 'build.gradle', match: '"opensearch.version", "\\d.*"', replace: '"opensearch.version", "' + newVersion.tokenize('-')[0] + '-SNAPSHOT"', flags: 'g', byline: true)
|
||||
}
|
||||
onlyIf { System.getProperty('newVersion') }
|
||||
doLast {
|
||||
ext.newVersion = System.getProperty('newVersion')
|
||||
println "Setting version to ${newVersion}."
|
||||
// String tokenization to support -SNAPSHOT
|
||||
ant.replaceregexp(file: 'build.gradle', match: '"opensearch.version", "\\d.*"', replace: '"opensearch.version", "' + newVersion.tokenize('-')[0] + '-SNAPSHOT"', flags: 'g', byline: true)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -43,7 +43,7 @@ import com.wazuh.setup.index.IndexStateManagement;
|
||||
import com.wazuh.setup.index.StateIndex;
|
||||
import com.wazuh.setup.index.StreamIndex;
|
||||
import com.wazuh.setup.settings.PluginSettings;
|
||||
import com.wazuh.setup.utils.IndexUtils;
|
||||
import com.wazuh.setup.utils.JsonUtils;
|
||||
|
||||
/**
|
||||
* Main class of the Indexer Setup plugin. This plugin is responsible for the creation of the index
|
||||
@ -87,14 +87,13 @@ public class SetupPlugin extends Plugin implements ClusterPlugin {
|
||||
// ISM index
|
||||
this.indices.add(new IndexStateManagement(IndexStateManagement.ISM_INDEX_NAME, "templates/ism-config"));
|
||||
// Stream indices
|
||||
this.indices.add(new StreamIndex("wazuh-alerts-v5-000001", "templates/streams/alerts", "wazuh-alerts-v5"));
|
||||
this.indices.add(new StreamIndex("wazuh-archives-v5-000001", "templates/streams/archives", "wazuh-archives-v5"));
|
||||
this.indices.add(new StreamIndex("wazuh-alerts-v5", "templates/streams/alerts"));
|
||||
this.indices.add(new StreamIndex("wazuh-archives-v5", "templates/streams/archives"));
|
||||
// Decoder indices
|
||||
for (String category : this.categories) {
|
||||
this.indices.add(new StreamIndex(
|
||||
"wazuh-events-v5-" + category + "-000001",
|
||||
"templates/streams/" + category,
|
||||
"wazuh-events-v5-" + category
|
||||
"wazuh-events-v5-" + category,
|
||||
"templates/streams/" + category
|
||||
));
|
||||
}
|
||||
|
||||
@ -122,12 +121,12 @@ public class SetupPlugin extends Plugin implements ClusterPlugin {
|
||||
// spotless:on
|
||||
|
||||
// Inject dependencies
|
||||
IndexUtils utils = new IndexUtils();
|
||||
JsonUtils utils = new JsonUtils();
|
||||
this.indices.forEach(
|
||||
index -> {
|
||||
index.setClient(client);
|
||||
index.setClusterService(clusterService);
|
||||
index.setIndexUtils(utils);
|
||||
index.setUtils(utils);
|
||||
});
|
||||
|
||||
return Collections.emptyList();
|
||||
|
||||
@ -16,22 +16,26 @@
|
||||
*/
|
||||
package com.wazuh.setup.index;
|
||||
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
import org.opensearch.ResourceAlreadyExistsException;
|
||||
import org.opensearch.action.admin.indices.create.CreateIndexRequest;
|
||||
import org.opensearch.action.admin.indices.create.CreateIndexResponse;
|
||||
import org.opensearch.action.admin.indices.template.put.PutIndexTemplateRequest;
|
||||
import org.opensearch.action.support.clustermanager.AcknowledgedResponse;
|
||||
import org.opensearch.action.admin.indices.template.put.PutComposableIndexTemplateAction;
|
||||
import org.opensearch.cluster.metadata.ComposableIndexTemplate;
|
||||
import org.opensearch.cluster.service.ClusterService;
|
||||
import org.opensearch.common.compress.CompressedXContent;
|
||||
import org.opensearch.common.settings.Settings;
|
||||
import org.opensearch.transport.client.Client;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.io.InputStream;
|
||||
|
||||
import com.wazuh.setup.model.IndexTemplate;
|
||||
import com.wazuh.setup.settings.PluginSettings;
|
||||
import com.wazuh.setup.utils.IndexUtils;
|
||||
import com.wazuh.setup.utils.JsonUtils;
|
||||
|
||||
/**
|
||||
* Abstract class with the required logic to create indices. In our context, an index always require
|
||||
@ -45,7 +49,7 @@ public abstract class Index implements IndexInitializer {
|
||||
// Dependencies.
|
||||
Client client;
|
||||
ClusterService clusterService;
|
||||
IndexUtils indexUtils;
|
||||
JsonUtils jsonUtils;
|
||||
|
||||
// Properties.
|
||||
String index;
|
||||
@ -87,12 +91,12 @@ public abstract class Index implements IndexInitializer {
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the IndexUtils instance.
|
||||
* Sets the JsonUtils instance.
|
||||
*
|
||||
* @param indexUtils the IndexUtils instance to set.
|
||||
* @param jsonUtils the JsonUtils instance to set.
|
||||
*/
|
||||
public void setIndexUtils(IndexUtils indexUtils) {
|
||||
this.indexUtils = indexUtils;
|
||||
public void setUtils(JsonUtils jsonUtils) {
|
||||
this.jsonUtils = jsonUtils;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -137,42 +141,45 @@ public abstract class Index implements IndexInitializer {
|
||||
}
|
||||
log.warn("Operation to create the index [{}] timed out. Retrying...", index);
|
||||
this.retry_index_creation = false;
|
||||
this.indexUtils.sleep(PluginSettings.getBackoff(this.clusterService.getSettings()));
|
||||
this.sleep(PluginSettings.getBackoff(this.clusterService.getSettings()));
|
||||
this.createIndex(index);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates an index template.
|
||||
* Creates an index template (v2).
|
||||
*
|
||||
* @param template name of the index template to create.
|
||||
*/
|
||||
public void createTemplate(String template) {
|
||||
try {
|
||||
Map<String, Object> templateFile = this.indexUtils.fromFile(template + ".json");
|
||||
// Read JSON index template
|
||||
ObjectMapper mapper = new ObjectMapper();
|
||||
InputStream is = this.getClass().getClassLoader().getResourceAsStream(template + ".json");
|
||||
IndexTemplate indexTemplate = mapper.readValue(is, IndexTemplate.class);
|
||||
|
||||
PutIndexTemplateRequest putIndexTemplateRequest =
|
||||
new PutIndexTemplateRequest()
|
||||
.mapping(this.indexUtils.get(templateFile, "mappings"))
|
||||
.settings(this.indexUtils.get(templateFile, "settings"))
|
||||
.order((int) templateFile.getOrDefault("order", 0))
|
||||
.name(template)
|
||||
.patterns((List<String>) templateFile.get("index_patterns"));
|
||||
// Create a V2 template (ComposableIndexTemplate)
|
||||
String indexMappings = mapper.writeValueAsString(indexTemplate.getMappings());
|
||||
CompressedXContent compressedMapping = new CompressedXContent(indexMappings);
|
||||
Settings settings = Settings.builder().loadFromMap(indexTemplate.getSettings()).build();
|
||||
ComposableIndexTemplate composableTemplate =
|
||||
indexTemplate.getComposableIndexTemplate(settings, compressedMapping);
|
||||
|
||||
AcknowledgedResponse createIndexTemplateResponse =
|
||||
this.client
|
||||
.admin()
|
||||
.indices()
|
||||
.putTemplate(putIndexTemplateRequest)
|
||||
.actionGet(PluginSettings.getTimeout(this.clusterService.getSettings()));
|
||||
|
||||
log.info(
|
||||
"Index template created successfully: {} {}",
|
||||
template,
|
||||
createIndexTemplateResponse.isAcknowledged());
|
||||
// Use the V2 API to put the template
|
||||
PutComposableIndexTemplateAction.Request request =
|
||||
new PutComposableIndexTemplateAction.Request(template)
|
||||
.indexTemplate(composableTemplate)
|
||||
.create(false);
|
||||
|
||||
// Put index template
|
||||
this.client
|
||||
.execute(PutComposableIndexTemplateAction.INSTANCE, request)
|
||||
.actionGet(PluginSettings.getTimeout(this.clusterService.getSettings()));
|
||||
} catch (IOException e) {
|
||||
log.error("Error reading index template from filesystem {}", template);
|
||||
log.error(
|
||||
"Error reading index template from filesystem [{}]. Caused by: {}",
|
||||
template,
|
||||
e.toString());
|
||||
} catch (ResourceAlreadyExistsException e) {
|
||||
log.info("Index template {} already exists. Skipping.", template);
|
||||
} catch (
|
||||
@ -188,7 +195,7 @@ public abstract class Index implements IndexInitializer {
|
||||
}
|
||||
log.warn("Operation to create the index template [{}] timed out. Retrying...", template);
|
||||
this.retry_template_creation = false;
|
||||
this.indexUtils.sleep(PluginSettings.getBackoff(this.clusterService.getSettings()));
|
||||
this.sleep(PluginSettings.getBackoff(this.clusterService.getSettings()));
|
||||
this.createTemplate(template);
|
||||
}
|
||||
}
|
||||
@ -201,4 +208,17 @@ public abstract class Index implements IndexInitializer {
|
||||
this.createTemplate(this.template);
|
||||
this.createIndex(this.index);
|
||||
}
|
||||
|
||||
/**
|
||||
* Utility method to wrap up the call to {@link Thread#sleep(long)} on a try-catch block.
|
||||
*
|
||||
* @param millis sleep interval in milliseconds.
|
||||
*/
|
||||
void sleep(long millis) {
|
||||
try {
|
||||
Thread.sleep(millis);
|
||||
} catch (InterruptedException ex) {
|
||||
throw new RuntimeException(ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -16,6 +16,8 @@
|
||||
*/
|
||||
package com.wazuh.setup.index;
|
||||
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
import org.opensearch.ResourceAlreadyExistsException;
|
||||
@ -25,10 +27,12 @@ import org.opensearch.action.index.IndexRequest;
|
||||
import org.opensearch.core.xcontent.MediaTypeRegistry;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import com.wazuh.setup.model.IndexTemplate;
|
||||
import com.wazuh.setup.settings.PluginSettings;
|
||||
|
||||
/**
|
||||
@ -38,7 +42,7 @@ import com.wazuh.setup.settings.PluginSettings;
|
||||
public class IndexStateManagement extends Index {
|
||||
private static final Logger log = LogManager.getLogger(IndexStateManagement.class);
|
||||
|
||||
// ISM index name
|
||||
/** ISM index name */
|
||||
public static final String ISM_INDEX_NAME = ".opendistro-ism-config";
|
||||
|
||||
// ISM policies names (filename without extension)
|
||||
@ -74,10 +78,11 @@ public class IndexStateManagement extends Index {
|
||||
*
|
||||
* @param policy policy name to create.
|
||||
*/
|
||||
private void indexPolicy(String policy) {
|
||||
void indexPolicy(String policy) {
|
||||
try {
|
||||
Map<String, Object> policyFile;
|
||||
policyFile = this.indexUtils.fromFile(STREAM_ROLLOVER_POLICY_PATH);
|
||||
|
||||
policyFile = this.jsonUtils.fromFile(STREAM_ROLLOVER_POLICY_PATH);
|
||||
|
||||
IndexRequest indexRequest =
|
||||
new IndexRequest(this.index)
|
||||
@ -102,7 +107,7 @@ public class IndexStateManagement extends Index {
|
||||
}
|
||||
log.warn("Operation to create the policy [{}] timed out. Retrying...", policy);
|
||||
this.retry_index_creation = false;
|
||||
this.indexUtils.sleep(PluginSettings.getBackoff(this.clusterService.getSettings()));
|
||||
this.sleep(PluginSettings.getBackoff(this.clusterService.getSettings()));
|
||||
this.indexPolicy(policy);
|
||||
}
|
||||
}
|
||||
@ -119,12 +124,16 @@ public class IndexStateManagement extends Index {
|
||||
// For some reason the index template is not applied to the ISM internal index
|
||||
// ".opendistro-ism-config", so we explicitly set the index mappings and settings
|
||||
// as part of the CreateIndexRequest.
|
||||
Map<String, Object> templateFile = this.indexUtils.fromFile(this.template + ".json");
|
||||
// Read JSON index template
|
||||
ObjectMapper mapper = new ObjectMapper();
|
||||
InputStream is =
|
||||
this.getClass().getClassLoader().getResourceAsStream(this.template + ".json");
|
||||
IndexTemplate indexTemplate = mapper.readValue(is, IndexTemplate.class);
|
||||
|
||||
CreateIndexRequest request =
|
||||
new CreateIndexRequest(index)
|
||||
.mapping(this.indexUtils.get(templateFile, "mappings"))
|
||||
.settings(this.indexUtils.get(templateFile, "settings"));
|
||||
.mapping(indexTemplate.getMappings())
|
||||
.settings(indexTemplate.getSettings());
|
||||
CreateIndexResponse createIndexResponse =
|
||||
this.client
|
||||
.admin()
|
||||
@ -136,10 +145,13 @@ public class IndexStateManagement extends Index {
|
||||
createIndexResponse.index(),
|
||||
createIndexResponse.isAcknowledged());
|
||||
}
|
||||
} catch (IOException e) {
|
||||
log.error("Error reading index template from filesystem {}", this.template);
|
||||
} catch (ResourceAlreadyExistsException e) {
|
||||
log.info("Index {} already exists. Skipping.", index);
|
||||
} catch (IOException e) {
|
||||
log.error(
|
||||
"Error reading index template from filesystem [{}]. Caused by: {}",
|
||||
this.template,
|
||||
e.toString());
|
||||
} catch (
|
||||
Exception
|
||||
e) { // TimeoutException may be raised by actionGet(), but we cannot catch that one.
|
||||
@ -150,7 +162,7 @@ public class IndexStateManagement extends Index {
|
||||
}
|
||||
log.warn("Operation to create the index [{}] timed out. Retrying...", index);
|
||||
this.retry_index_creation = false;
|
||||
this.indexUtils.sleep(PluginSettings.getBackoff(this.clusterService.getSettings()));
|
||||
this.sleep(PluginSettings.getBackoff(this.clusterService.getSettings()));
|
||||
this.createIndex(index);
|
||||
}
|
||||
}
|
||||
|
||||
@ -19,9 +19,8 @@ package com.wazuh.setup.index;
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
import org.opensearch.ResourceAlreadyExistsException;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.create.CreateIndexRequest;
|
||||
import org.opensearch.action.admin.indices.create.CreateIndexResponse;
|
||||
import org.opensearch.action.admin.indices.datastream.CreateDataStreamAction;
|
||||
import org.opensearch.action.support.clustermanager.AcknowledgedResponse;
|
||||
|
||||
import com.wazuh.setup.settings.PluginSettings;
|
||||
|
||||
@ -32,58 +31,58 @@ import com.wazuh.setup.settings.PluginSettings;
|
||||
public class StreamIndex extends WazuhIndex {
|
||||
private static final Logger log = LogManager.getLogger(StreamIndex.class);
|
||||
|
||||
private final String alias;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* @param index index name.
|
||||
* @param template index template name.
|
||||
* @param alias index alias name for advanced management such as automatic rollover.
|
||||
*/
|
||||
public StreamIndex(String index, String template, String alias) {
|
||||
public StreamIndex(String index, String template) {
|
||||
super(index, template);
|
||||
this.alias = alias;
|
||||
}
|
||||
|
||||
/**
|
||||
* Overrides {@link Index#createIndex(String)} to include the {@link #alias} to the index creation
|
||||
* request.
|
||||
* Overrides {@link Index#createIndex(String)} to create a Data Stream instead.
|
||||
*
|
||||
* @param index Name of the index to create.
|
||||
* @see Alias
|
||||
* @param index Name of the data stream to create.
|
||||
*/
|
||||
@Override
|
||||
public void createIndex(String index) {
|
||||
try {
|
||||
if (!this.indexExists(index)) {
|
||||
CreateIndexRequest request =
|
||||
new CreateIndexRequest(index).alias(new Alias(this.alias).writeIndex(true));
|
||||
CreateIndexResponse createIndexResponse =
|
||||
this.client
|
||||
.admin()
|
||||
.indices()
|
||||
.create(request)
|
||||
.actionGet(PluginSettings.getTimeout(this.clusterService.getSettings()));
|
||||
log.info(
|
||||
"Index created successfully: {} {}",
|
||||
createIndexResponse.index(),
|
||||
createIndexResponse.isAcknowledged());
|
||||
}
|
||||
this.createDataStream(index);
|
||||
} catch (ResourceAlreadyExistsException e) {
|
||||
log.info("Index {} already exists. Skipping.", index);
|
||||
} catch (
|
||||
Exception
|
||||
e) { // TimeoutException may be raised by actionGet(), but we cannot catch that one.
|
||||
// Exit condition. Re-attempt to create the index also failed. Original exception is rethrown.
|
||||
log.info("Data stream {} already exists. Skipping.", index);
|
||||
} catch (Exception e) {
|
||||
// TimeoutException may be raised by actionGet(), but we cannot catch that one.
|
||||
// Exit condition. Re-attempt to create the data stream also failed. Original exception is
|
||||
// rethrown.
|
||||
if (!this.retry_index_creation) {
|
||||
log.error("Initialization of index [{}] finally failed. The node will shut down.", index);
|
||||
log.error(
|
||||
"Initialization of data stream [{}] finally failed. The node will shut down.", index);
|
||||
throw e;
|
||||
}
|
||||
log.warn("Operation to create the index [{}] timed out. Retrying...", index);
|
||||
log.warn("Operation to create the data stream [{}] timed out. Retrying...", index);
|
||||
this.retry_index_creation = false;
|
||||
this.indexUtils.sleep(PluginSettings.getBackoff(this.clusterService.getSettings()));
|
||||
this.sleep(PluginSettings.getBackoff(this.clusterService.getSettings()));
|
||||
this.createIndex(index);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a Data Stream.
|
||||
*
|
||||
* @param name name of the data stream to create.
|
||||
*/
|
||||
public void createDataStream(String name) {
|
||||
CreateDataStreamAction.Request request = new CreateDataStreamAction.Request(name);
|
||||
|
||||
AcknowledgedResponse response =
|
||||
this.client
|
||||
.admin()
|
||||
.indices()
|
||||
.createDataStream(request)
|
||||
.actionGet(PluginSettings.getTimeout(this.clusterService.getSettings()));
|
||||
|
||||
log.info("Data Stream created successfully: {} {}", name, response.isAcknowledged());
|
||||
}
|
||||
}
|
||||
|
||||
@ -0,0 +1,123 @@
|
||||
/*
|
||||
* Copyright (C) 2024, Wazuh Inc.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.wazuh.setup.model;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
import org.opensearch.cluster.metadata.ComposableIndexTemplate;
|
||||
import org.opensearch.cluster.metadata.Template;
|
||||
import org.opensearch.common.compress.CompressedXContent;
|
||||
import org.opensearch.common.settings.Settings;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Index Template Data Transfer Object.
|
||||
*
|
||||
* <p>Fill-in values automatically using Jackson Databind.
|
||||
*/
|
||||
public class IndexTemplate {
|
||||
|
||||
/** Default constructor */
|
||||
public IndexTemplate() {}
|
||||
|
||||
@JsonProperty("index_patterns")
|
||||
private List<String> indexPatterns;
|
||||
|
||||
private long priority;
|
||||
private Map<String, Object> settings;
|
||||
private Map<String, Object> mappings;
|
||||
|
||||
@JsonProperty("data_stream")
|
||||
private Map<String, Object> dataStream;
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@JsonProperty("template")
|
||||
private void unpackNested(Map<String, Object> template) {
|
||||
this.settings = (Map<String, Object>) template.get("settings");
|
||||
this.mappings = (Map<String, Object>) template.get("mappings");
|
||||
}
|
||||
|
||||
/**
|
||||
* Index pattern getter.
|
||||
*
|
||||
* @return returns the list of index patters this index template applies to, or null.
|
||||
*/
|
||||
public List<String> getIndexPatterns() {
|
||||
return this.indexPatterns;
|
||||
}
|
||||
|
||||
/**
|
||||
* Index template priority getter.
|
||||
*
|
||||
* @return returns the priority of the index template, or null.
|
||||
*/
|
||||
public long getPriority() {
|
||||
return this.priority;
|
||||
}
|
||||
|
||||
/**
|
||||
* Index settings getter.
|
||||
*
|
||||
* @return returns the index settings to apply to indices matching the index pattern, or null.
|
||||
*/
|
||||
public Map<String, Object> getSettings() {
|
||||
return this.settings;
|
||||
}
|
||||
|
||||
/**
|
||||
* Index mappings getter.
|
||||
*
|
||||
* @return returns the index mappings for the indices matching the index pattern, or null.
|
||||
*/
|
||||
public Map<String, Object> getMappings() {
|
||||
return this.mappings;
|
||||
}
|
||||
|
||||
/**
|
||||
* Data Stream getter.
|
||||
*
|
||||
* @return returns the "data_stream" property of the index template, or null.
|
||||
*/
|
||||
public Map<String, Object> getDataStream() {
|
||||
return this.dataStream;
|
||||
}
|
||||
|
||||
/**
|
||||
* Builds up a ComposableIndexTemplate resulting from the properties of the index template.
|
||||
*
|
||||
* @param settings index template settings as a string.
|
||||
* @param compressedMapping index template mappings a CompressedXContent instance.
|
||||
* @return instance of ComposableIndexTemplate.
|
||||
*/
|
||||
public ComposableIndexTemplate getComposableIndexTemplate(
|
||||
Settings settings, CompressedXContent compressedMapping) {
|
||||
ComposableIndexTemplate.DataStreamTemplate dataStreamTemplate =
|
||||
this.getDataStream() != null ? new ComposableIndexTemplate.DataStreamTemplate() : null;
|
||||
|
||||
// Create the composable template
|
||||
return new ComposableIndexTemplate(
|
||||
this.getIndexPatterns(),
|
||||
new Template(settings, compressedMapping, null),
|
||||
null,
|
||||
this.getPriority(),
|
||||
null,
|
||||
null,
|
||||
dataStreamTemplate);
|
||||
}
|
||||
}
|
||||
@ -27,35 +27,24 @@ import java.util.Map;
|
||||
|
||||
import reactor.util.annotation.NonNull;
|
||||
|
||||
/** Util functions to parse and manage index templates files. */
|
||||
public class IndexUtils {
|
||||
/** Util functions to parse and manage JSON files. */
|
||||
public class JsonUtils {
|
||||
|
||||
/** Default constructor */
|
||||
public IndexUtils() {}
|
||||
public JsonUtils() {}
|
||||
|
||||
/**
|
||||
* Read index template file from the resources folder and returns its JSON content as a map.
|
||||
* Read JSON file from the resources folder and returns its JSON content as a map.
|
||||
*
|
||||
* @param filename name of the index template to read from the resources folder
|
||||
* @return the JSON index template as a map
|
||||
* @param filename name of the JSON file to read from the resources folder
|
||||
* @return the JSON file as a map
|
||||
* @throws IOException file not found or could not be read
|
||||
* @deprecated Use jackson's ObjectMapper instead.
|
||||
*/
|
||||
@Deprecated
|
||||
public Map<String, Object> fromFile(@NonNull String filename) throws IOException {
|
||||
InputStream is = IndexUtils.class.getClassLoader().getResourceAsStream(filename);
|
||||
return this.toMap(is);
|
||||
}
|
||||
InputStream is = JsonUtils.class.getClassLoader().getResourceAsStream(filename);
|
||||
|
||||
/**
|
||||
* Convert from a JSON InputStream into a String, Object map.
|
||||
*
|
||||
* <p>Used to convert the JSON index templates to the required format.
|
||||
*
|
||||
* @param is: the JSON formatted InputStream
|
||||
* @return a map with the json string contents.
|
||||
* @throws IOException thrown by {@link JsonXContent#createParser(NamedXContentRegistry,
|
||||
* DeprecationHandler, InputStream)}
|
||||
*/
|
||||
public Map<String, Object> toMap(InputStream is) throws IOException {
|
||||
XContentParser parser =
|
||||
JsonXContent.jsonXContent.createParser(
|
||||
NamedXContentRegistry.EMPTY, DeprecationHandler.THROW_UNSUPPORTED_OPERATION, is);
|
||||
@ -64,29 +53,14 @@ public class IndexUtils {
|
||||
}
|
||||
|
||||
/**
|
||||
* Cast map's element to a String, Object map.
|
||||
* Return JSON node by key.
|
||||
*
|
||||
* <p>Used to retrieve the settings and mappings from the index templates, which are a JSON object
|
||||
* themselves.
|
||||
*
|
||||
* @param map the index template as a map.
|
||||
* @param map the parent JSON node where the key to retrieve is.
|
||||
* @param key the element's key to retrieve and cast.
|
||||
* @return a String, Object map
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
public Map<String, Object> get(Map<String, Object> map, String key) {
|
||||
return (Map<String, Object>) map.get(key);
|
||||
}
|
||||
|
||||
/**
|
||||
* Utility method to wrap up the call to {@link Thread#sleep(long)} on a try-catch block.
|
||||
*
|
||||
* @param millis sleep interval in milliseconds.
|
||||
*/
|
||||
public void sleep(long millis) {
|
||||
try {
|
||||
Thread.sleep(millis);
|
||||
} catch (InterruptedException ex) {
|
||||
throw new RuntimeException(ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,40 +1,42 @@
|
||||
{
|
||||
"order": 1,
|
||||
"index_patterns": [
|
||||
"wazuh-monitoring*"
|
||||
],
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"refresh_interval": "5s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"properties": {
|
||||
"timestamp": {
|
||||
"type": "date",
|
||||
"format": "date"
|
||||
},
|
||||
"status": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"id": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"refresh_interval": "5s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"properties": {
|
||||
"timestamp": {
|
||||
"type": "date",
|
||||
"format": "date"
|
||||
},
|
||||
"status": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"id": {
|
||||
"type": "keyword"
|
||||
},
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,219 +2,221 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-fim-files*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.groups ",
|
||||
"agent.host.architecture ",
|
||||
"agent.host.hostname ",
|
||||
"agent.host.ip ",
|
||||
"agent.host.os.name ",
|
||||
"agent.host.os.platform ",
|
||||
"agent.host.os.type ",
|
||||
"agent.host.os.version ",
|
||||
"agent.id ",
|
||||
"agent.name ",
|
||||
"agent.version ",
|
||||
"checksum.hash.sha1",
|
||||
"file.attributes",
|
||||
"file.device",
|
||||
"file.gid",
|
||||
"file.group",
|
||||
"file.hash.md5",
|
||||
"file.hash.sha1",
|
||||
"file.hash.sha256",
|
||||
"file.inode",
|
||||
"file.mtime",
|
||||
"file.owner",
|
||||
"file.path",
|
||||
"file.path.fields.text",
|
||||
"file.permissions",
|
||||
"file.size",
|
||||
"file.uid",
|
||||
"state.document_version",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"file": {
|
||||
"properties": {
|
||||
"attributes": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"device": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"gid": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"group": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hash": {
|
||||
"properties": {
|
||||
"md5": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"sha256": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"file": {
|
||||
"properties": {
|
||||
"attributes": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"device": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"gid": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"group": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hash": {
|
||||
"properties": {
|
||||
"md5": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"sha256": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"inode": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"mtime": {
|
||||
"type": "date"
|
||||
},
|
||||
"owner": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"permissions": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"size": {
|
||||
"type": "long"
|
||||
},
|
||||
"uid": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"inode": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"mtime": {
|
||||
"type": "date"
|
||||
},
|
||||
"owner": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"permissions": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"size": {
|
||||
"type": "long"
|
||||
},
|
||||
"uid": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.groups ",
|
||||
"agent.host.architecture ",
|
||||
"agent.host.hostname ",
|
||||
"agent.host.ip ",
|
||||
"agent.host.os.name ",
|
||||
"agent.host.os.platform ",
|
||||
"agent.host.os.type ",
|
||||
"agent.host.os.version ",
|
||||
"agent.id ",
|
||||
"agent.name ",
|
||||
"agent.version ",
|
||||
"checksum.hash.sha1",
|
||||
"file.attributes",
|
||||
"file.device",
|
||||
"file.gid",
|
||||
"file.group",
|
||||
"file.hash.md5",
|
||||
"file.hash.sha1",
|
||||
"file.hash.sha256",
|
||||
"file.inode",
|
||||
"file.mtime",
|
||||
"file.owner",
|
||||
"file.path",
|
||||
"file.path.fields.text",
|
||||
"file.permissions",
|
||||
"file.size",
|
||||
"file.uid",
|
||||
"state.document_version",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,188 +2,190 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-fim-registry-keys*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"checksum.hash.sha1",
|
||||
"registry.architecture",
|
||||
"registry.gid",
|
||||
"registry.group",
|
||||
"registry.hive",
|
||||
"registry.key",
|
||||
"registry.mtime",
|
||||
"registry.owner",
|
||||
"registry.path",
|
||||
"registry.permissions",
|
||||
"registry.uid",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"registry": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"gid": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"group": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hive": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"key": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"mtime": {
|
||||
"type": "date"
|
||||
},
|
||||
"owner": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"permissions": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"uid": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"registry": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"gid": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"group": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hive": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"key": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"mtime": {
|
||||
"type": "date"
|
||||
},
|
||||
"owner": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"permissions": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"uid": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"checksum.hash.sha1",
|
||||
"registry.architecture",
|
||||
"registry.gid",
|
||||
"registry.group",
|
||||
"registry.hive",
|
||||
"registry.key",
|
||||
"registry.mtime",
|
||||
"registry.owner",
|
||||
"registry.path",
|
||||
"registry.permissions",
|
||||
"registry.uid",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,196 +2,198 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-fim-registry-values*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"checksum.hash.sha1",
|
||||
"registry.architecture",
|
||||
"registry.data.hash.md5",
|
||||
"registry.data.hash.sha1",
|
||||
"registry.data.hash.sha256",
|
||||
"registry.data.type",
|
||||
"registry.hive",
|
||||
"registry.key",
|
||||
"registry.path",
|
||||
"registry.size",
|
||||
"registry.value",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"registry": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"data": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"md5": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"sha256": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"hive": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"key": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"size": {
|
||||
"type": "long"
|
||||
},
|
||||
"value": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"registry": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"data": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"md5": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"sha256": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"hive": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"key": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"size": {
|
||||
"type": "long"
|
||||
},
|
||||
"value": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"checksum.hash.sha1",
|
||||
"registry.architecture",
|
||||
"registry.data.hash.md5",
|
||||
"registry.data.hash.sha1",
|
||||
"registry.data.hash.sha256",
|
||||
"registry.data.type",
|
||||
"registry.hive",
|
||||
"registry.key",
|
||||
"registry.path",
|
||||
"registry.size",
|
||||
"registry.value",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,246 +2,248 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-inventory-browser-extensions*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"browser.name",
|
||||
"user.id",
|
||||
"package.name",
|
||||
"package.id",
|
||||
"package.version",
|
||||
"package.vendor",
|
||||
"package.type",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"browser": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"profile": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"referenced": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"browser": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"profile": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"referenced": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"file": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha256": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"file": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha256": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"package": {
|
||||
"properties": {
|
||||
"autoupdate": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"build_version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"description": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"from_webstore": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"installed": {
|
||||
"type": "date"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"permissions": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"persistent": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"reference": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"vendor": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"visible": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"user": {
|
||||
"properties": {
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"package": {
|
||||
"properties": {
|
||||
"autoupdate": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"build_version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"description": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"from_webstore": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"installed": {
|
||||
"type": "date"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"permissions": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"persistent": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"reference": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"vendor": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"visible": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"user": {
|
||||
"properties": {
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"browser.name",
|
||||
"user.id",
|
||||
"package.name",
|
||||
"package.id",
|
||||
"package.version",
|
||||
"package.vendor",
|
||||
"package.type",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,159 +2,161 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-inventory-groups*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"group.name",
|
||||
"group.description",
|
||||
"group.id_signed",
|
||||
"group.uuid",
|
||||
"group.users",
|
||||
"state.modified_at"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"properties": {
|
||||
"description": {
|
||||
"type": "match_only_text"
|
||||
},
|
||||
"id": {
|
||||
"type": "unsigned_long"
|
||||
},
|
||||
"id_signed": {
|
||||
"type": "long"
|
||||
},
|
||||
"is_hidden": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"users": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"uuid": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"group": {
|
||||
"properties": {
|
||||
"description": {
|
||||
"type": "match_only_text"
|
||||
},
|
||||
"id": {
|
||||
"type": "unsigned_long"
|
||||
},
|
||||
"id_signed": {
|
||||
"type": "long"
|
||||
},
|
||||
"is_hidden": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"users": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"uuid": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"group.name",
|
||||
"group.description",
|
||||
"group.id_signed",
|
||||
"group.uuid",
|
||||
"group.users",
|
||||
"state.modified_at"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,175 +2,177 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-inventory-hardware*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"agent.host.ip",
|
||||
"host.serial_number",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"cpu": {
|
||||
"properties": {
|
||||
"cores": {
|
||||
"type": "short"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"speed": {
|
||||
"type": "long"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"cpu": {
|
||||
"properties": {
|
||||
"cores": {
|
||||
"type": "short"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"speed": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"memory": {
|
||||
"properties": {
|
||||
"free": {
|
||||
"type": "long"
|
||||
},
|
||||
"total": {
|
||||
"type": "long"
|
||||
},
|
||||
"usage": {
|
||||
"scaling_factor": 100,
|
||||
"type": "scaled_float"
|
||||
},
|
||||
"used": {
|
||||
"type": "long"
|
||||
},
|
||||
"memory": {
|
||||
"properties": {
|
||||
"free": {
|
||||
"type": "long"
|
||||
},
|
||||
"total": {
|
||||
"type": "long"
|
||||
},
|
||||
"usage": {
|
||||
"scaling_factor": 100,
|
||||
"type": "scaled_float"
|
||||
},
|
||||
"used": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
"serial_number": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"serial_number": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"agent.host.ip",
|
||||
"host.serial_number",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,148 +2,150 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-inventory-hotfixes*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"package.hotfix.name",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"package": {
|
||||
"properties": {
|
||||
"hotfix": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"package": {
|
||||
"properties": {
|
||||
"hotfix": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"package.hotfix.name",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,202 +2,204 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-inventory-interfaces*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"agent.host.ip",
|
||||
"host.mac",
|
||||
"interface.name",
|
||||
"interface.alias",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"mac": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"network": {
|
||||
"properties": {
|
||||
"egress": {
|
||||
"properties": {
|
||||
"bytes": {
|
||||
"type": "long"
|
||||
},
|
||||
"drops": {
|
||||
"type": "long"
|
||||
},
|
||||
"errors": {
|
||||
"type": "long"
|
||||
},
|
||||
"packets": {
|
||||
"type": "long"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"mac": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"network": {
|
||||
"properties": {
|
||||
"egress": {
|
||||
"properties": {
|
||||
"bytes": {
|
||||
"type": "long"
|
||||
},
|
||||
"drops": {
|
||||
"type": "long"
|
||||
},
|
||||
"errors": {
|
||||
"type": "long"
|
||||
},
|
||||
"packets": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"ingress": {
|
||||
"properties": {
|
||||
"bytes": {
|
||||
"type": "long"
|
||||
},
|
||||
"drops": {
|
||||
"type": "long"
|
||||
},
|
||||
"errors": {
|
||||
"type": "long"
|
||||
},
|
||||
"packets": {
|
||||
"type": "long"
|
||||
},
|
||||
"ingress": {
|
||||
"properties": {
|
||||
"bytes": {
|
||||
"type": "long"
|
||||
},
|
||||
"drops": {
|
||||
"type": "long"
|
||||
},
|
||||
"errors": {
|
||||
"type": "long"
|
||||
},
|
||||
"packets": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"interface": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"mtu": {
|
||||
"type": "long"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"state": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"interface": {
|
||||
"properties": {
|
||||
"alias": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"mtu": {
|
||||
"type": "long"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"state": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"agent.host.ip",
|
||||
"host.mac",
|
||||
"interface.name",
|
||||
"interface.alias",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,166 +2,168 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-inventory-networks*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"agent.host.ip",
|
||||
"interface.name",
|
||||
"network.ip",
|
||||
"network.name",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"interface": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"network": {
|
||||
"properties": {
|
||||
"broadcast": {
|
||||
"type": "ip"
|
||||
},
|
||||
"dhcp": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"metric": {
|
||||
"type": "long"
|
||||
},
|
||||
"netmask": {
|
||||
"type": "ip"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"interface": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"network": {
|
||||
"properties": {
|
||||
"broadcast": {
|
||||
"type": "ip"
|
||||
},
|
||||
"dhcp": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"metric": {
|
||||
"type": "long"
|
||||
},
|
||||
"netmask": {
|
||||
"type": "ip"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"agent.host.ip",
|
||||
"interface.name",
|
||||
"network.ip",
|
||||
"network.name",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,201 +2,203 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-inventory-packages*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"package.architecture",
|
||||
"package.category",
|
||||
"package.description",
|
||||
"package.installed",
|
||||
"package.multiarch",
|
||||
"package.name",
|
||||
"package.path",
|
||||
"package.priority",
|
||||
"package.size",
|
||||
"package.source",
|
||||
"package.type",
|
||||
"package.vendor",
|
||||
"package.version",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"package": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"category": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"description": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"installed": {
|
||||
"type": "date"
|
||||
},
|
||||
"multiarch": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"priority": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"size": {
|
||||
"type": "long"
|
||||
},
|
||||
"source": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"vendor": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"package": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"category": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"description": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"installed": {
|
||||
"type": "date"
|
||||
},
|
||||
"multiarch": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"priority": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"size": {
|
||||
"type": "long"
|
||||
},
|
||||
"source": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"vendor": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"package.architecture",
|
||||
"package.category",
|
||||
"package.description",
|
||||
"package.installed",
|
||||
"package.multiarch",
|
||||
"package.name",
|
||||
"package.path",
|
||||
"package.priority",
|
||||
"package.size",
|
||||
"package.source",
|
||||
"package.type",
|
||||
"package.vendor",
|
||||
"package.version",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,220 +2,222 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-inventory-ports*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"host.network.egress.queue",
|
||||
"host.network.ingress.queue",
|
||||
"file.inode",
|
||||
"interface.state",
|
||||
"network.transport",
|
||||
"process.name",
|
||||
"process.pid",
|
||||
"source.ip",
|
||||
"destination.ip",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"destination": {
|
||||
"properties": {
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"port": {
|
||||
"type": "long"
|
||||
},
|
||||
"destination": {
|
||||
"properties": {
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"port": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"file": {
|
||||
"properties": {
|
||||
"inode": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"file": {
|
||||
"properties": {
|
||||
"inode": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"network": {
|
||||
"properties": {
|
||||
"egress": {
|
||||
"properties": {
|
||||
"queue": {
|
||||
"type": "long"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"network": {
|
||||
"properties": {
|
||||
"egress": {
|
||||
"properties": {
|
||||
"queue": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"ingress": {
|
||||
"properties": {
|
||||
"queue": {
|
||||
"type": "long"
|
||||
},
|
||||
"ingress": {
|
||||
"properties": {
|
||||
"queue": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"interface": {
|
||||
"properties": {
|
||||
"state": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"network": {
|
||||
"properties": {
|
||||
"transport": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"process": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"pid": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
"source": {
|
||||
"properties": {
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"port": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"interface": {
|
||||
"properties": {
|
||||
"state": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"network": {
|
||||
"properties": {
|
||||
"transport": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"process": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"pid": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
"source": {
|
||||
"properties": {
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"port": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"host.network.egress.queue",
|
||||
"host.network.ingress.queue",
|
||||
"file.inode",
|
||||
"interface.state",
|
||||
"network.transport",
|
||||
"process.name",
|
||||
"process.pid",
|
||||
"source.ip",
|
||||
"destination.ip",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,186 +2,188 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-inventory-processes*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"process.args",
|
||||
"process.args_count",
|
||||
"process.command_line",
|
||||
"process.name",
|
||||
"process.parent.pid",
|
||||
"process.pid",
|
||||
"process.start",
|
||||
"process.state",
|
||||
"process.stime",
|
||||
"process.utime",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"process": {
|
||||
"properties": {
|
||||
"args": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"args_count": {
|
||||
"type": "long"
|
||||
},
|
||||
"command_line": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"parent": {
|
||||
"properties": {
|
||||
"pid": {
|
||||
"type": "long"
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"process": {
|
||||
"properties": {
|
||||
"args": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"args_count": {
|
||||
"type": "long"
|
||||
},
|
||||
"command_line": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"parent": {
|
||||
"properties": {
|
||||
"pid": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
"pid": {
|
||||
"type": "long"
|
||||
},
|
||||
"start": {
|
||||
"type": "date"
|
||||
},
|
||||
"state": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"stime": {
|
||||
"type": "long"
|
||||
},
|
||||
"utime": {
|
||||
"type": "long"
|
||||
}
|
||||
},
|
||||
"pid": {
|
||||
"type": "long"
|
||||
},
|
||||
"start": {
|
||||
"type": "date"
|
||||
},
|
||||
"state": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"stime": {
|
||||
"type": "long"
|
||||
},
|
||||
"utime": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"process.args",
|
||||
"process.args_count",
|
||||
"process.command_line",
|
||||
"process.name",
|
||||
"process.parent.pid",
|
||||
"process.pid",
|
||||
"process.start",
|
||||
"process.state",
|
||||
"process.stime",
|
||||
"process.utime",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,161 +2,163 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-inventory-protocols*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"network.type",
|
||||
"interface.name",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"interface": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"network": {
|
||||
"properties": {
|
||||
"dhcp": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"gateway": {
|
||||
"type": "ip"
|
||||
},
|
||||
"metric": {
|
||||
"type": "long"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"interface": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"network": {
|
||||
"properties": {
|
||||
"dhcp": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"gateway": {
|
||||
"type": "ip"
|
||||
},
|
||||
"metric": {
|
||||
"type": "long"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"network.type",
|
||||
"interface.name",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,321 +2,323 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-inventory-services*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"service.name",
|
||||
"service.id",
|
||||
"service.description",
|
||||
"service.enabled",
|
||||
"service.restart",
|
||||
"service.state",
|
||||
"service.sub_state",
|
||||
"service.type",
|
||||
"service.start_type",
|
||||
"process.executable",
|
||||
"file.path",
|
||||
"log.file.path",
|
||||
"error.log.file.path",
|
||||
"process.args",
|
||||
"process.user.name",
|
||||
"process.group.name",
|
||||
"service.address",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"properties": {
|
||||
"log": {
|
||||
"properties": {
|
||||
"file": {
|
||||
"properties": {
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"error": {
|
||||
"properties": {
|
||||
"log": {
|
||||
"properties": {
|
||||
"file": {
|
||||
"properties": {
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"file": {
|
||||
"properties": {
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"file": {
|
||||
"properties": {
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"log": {
|
||||
"properties": {
|
||||
"file": {
|
||||
"properties": {
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"log": {
|
||||
"properties": {
|
||||
"file": {
|
||||
"properties": {
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"process": {
|
||||
"properties": {
|
||||
"args": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"executable": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"group": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"process": {
|
||||
"properties": {
|
||||
"args": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"executable": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"group": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"pid": {
|
||||
"type": "long"
|
||||
},
|
||||
"root_directory": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"user": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"pid": {
|
||||
"type": "long"
|
||||
},
|
||||
"root_directory": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"user": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"working_directory": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"working_directory": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"service": {
|
||||
"properties": {
|
||||
"address": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"description": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"enabled": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"exit_code": {
|
||||
"type": "integer"
|
||||
},
|
||||
"following": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"frequency": {
|
||||
"type": "long"
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"inetd_compatibility": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"object_path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"restart": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"start_type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"starts": {
|
||||
"properties": {
|
||||
"on_mount": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"on_not_empty_directory": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"on_path_modified": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"service": {
|
||||
"properties": {
|
||||
"address": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"description": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"enabled": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"exit_code": {
|
||||
"type": "integer"
|
||||
},
|
||||
"following": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"frequency": {
|
||||
"type": "long"
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"inetd_compatibility": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"object_path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"restart": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"start_type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"starts": {
|
||||
"properties": {
|
||||
"on_mount": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"on_not_empty_directory": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"on_path_modified": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"sub_state": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"target": {
|
||||
"properties": {
|
||||
"address": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ephemeral_id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"state": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"sub_state": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"target": {
|
||||
"properties": {
|
||||
"address": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ephemeral_id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"win32_exit_code": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"win32_exit_code": {
|
||||
"type": "integer"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"service.name",
|
||||
"service.id",
|
||||
"service.description",
|
||||
"service.enabled",
|
||||
"service.restart",
|
||||
"service.state",
|
||||
"service.sub_state",
|
||||
"service.type",
|
||||
"service.start_type",
|
||||
"process.executable",
|
||||
"file.path",
|
||||
"log.file.path",
|
||||
"error.log.file.path",
|
||||
"process.args",
|
||||
"process.user.name",
|
||||
"process.group.name",
|
||||
"service.address",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,230 +2,232 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-inventory-system*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"host.architecture",
|
||||
"host.hostname",
|
||||
"host.os.build",
|
||||
"host.os.codename",
|
||||
"host.os.distribution.release",
|
||||
"host.os.full",
|
||||
"host.os.kernel.name",
|
||||
"host.os.kernel.release",
|
||||
"host.os.kernel.version",
|
||||
"host.os.major",
|
||||
"host.os.minor",
|
||||
"host.os.name",
|
||||
"host.os.patch",
|
||||
"host.os.platform",
|
||||
"host.os.type",
|
||||
"host.os.version",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"build": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"codename": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"distribution": {
|
||||
"properties": {
|
||||
"release": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"full": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"kernel": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"release": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"build": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"codename": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"distribution": {
|
||||
"properties": {
|
||||
"release": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"full": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"kernel": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"release": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"major": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"minor": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"patch": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"major": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"minor": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"patch": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"host.architecture",
|
||||
"host.hostname",
|
||||
"host.os.build",
|
||||
"host.os.codename",
|
||||
"host.os.distribution.release",
|
||||
"host.os.full",
|
||||
"host.os.kernel.name",
|
||||
"host.os.kernel.release",
|
||||
"host.os.kernel.version",
|
||||
"host.os.major",
|
||||
"host.os.minor",
|
||||
"host.os.name",
|
||||
"host.os.patch",
|
||||
"host.os.platform",
|
||||
"host.os.type",
|
||||
"host.os.version",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,286 +2,288 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-inventory-users*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"user.id",
|
||||
"user.name",
|
||||
"user.home",
|
||||
"user.type",
|
||||
"user.created",
|
||||
"user.groups",
|
||||
"user.uuid",
|
||||
"user.auth_failures.timestamp",
|
||||
"user.auth_failures.count",
|
||||
"user.group.id_signed",
|
||||
"user.login.status",
|
||||
"user.login.type",
|
||||
"user.login.tty",
|
||||
"user.password.status",
|
||||
"user.password.last_change",
|
||||
"user.password.expiration_date",
|
||||
"user.roles",
|
||||
"user.last_login",
|
||||
"process.pid",
|
||||
"host.ip",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
}
|
||||
}
|
||||
},
|
||||
"login": {
|
||||
"properties": {
|
||||
"status": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"tty": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"process": {
|
||||
"properties": {
|
||||
"pid": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"user": {
|
||||
"properties": {
|
||||
"auth_failures": {
|
||||
"properties": {
|
||||
"count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"timestamp": {
|
||||
"type": "date"
|
||||
}
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
}
|
||||
},
|
||||
"created": {
|
||||
"type": "date"
|
||||
},
|
||||
"full_name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"group": {
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "unsigned_long"
|
||||
},
|
||||
"id_signed": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"home": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"is_hidden": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_remote": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"last_login": {
|
||||
"type": "date"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"password": {
|
||||
"properties": {
|
||||
"expiration_date": {
|
||||
"type": "date"
|
||||
},
|
||||
"hash_algorithm": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"inactive_days": {
|
||||
"type": "integer"
|
||||
},
|
||||
"last_change": {
|
||||
"type": "integer"
|
||||
},
|
||||
"last_set_time": {
|
||||
"type": "date"
|
||||
},
|
||||
"max_days_between_changes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"min_days_between_changes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"status": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"warning_days_before_expiration": {
|
||||
"type": "integer"
|
||||
}
|
||||
}
|
||||
},
|
||||
"roles": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"shell": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"uid_signed": {
|
||||
"type": "long"
|
||||
},
|
||||
"uuid": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"login": {
|
||||
"properties": {
|
||||
"status": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"tty": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"process": {
|
||||
"properties": {
|
||||
"pid": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"user": {
|
||||
"properties": {
|
||||
"auth_failures": {
|
||||
"properties": {
|
||||
"count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"timestamp": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"created": {
|
||||
"type": "date"
|
||||
},
|
||||
"full_name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"group": {
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "unsigned_long"
|
||||
},
|
||||
"id_signed": {
|
||||
"type": "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"home": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"is_hidden": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_remote": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"last_login": {
|
||||
"type": "date"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"password": {
|
||||
"properties": {
|
||||
"expiration_date": {
|
||||
"type": "date"
|
||||
},
|
||||
"hash_algorithm": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"inactive_days": {
|
||||
"type": "integer"
|
||||
},
|
||||
"last_change": {
|
||||
"type": "integer"
|
||||
},
|
||||
"last_set_time": {
|
||||
"type": "date"
|
||||
},
|
||||
"max_days_between_changes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"min_days_between_changes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"status": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"warning_days_before_expiration": {
|
||||
"type": "integer"
|
||||
}
|
||||
}
|
||||
},
|
||||
"roles": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"shell": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"uid_signed": {
|
||||
"type": "long"
|
||||
},
|
||||
"uuid": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"user.id",
|
||||
"user.name",
|
||||
"user.home",
|
||||
"user.type",
|
||||
"user.created",
|
||||
"user.groups",
|
||||
"user.uuid",
|
||||
"user.auth_failures.timestamp",
|
||||
"user.auth_failures.count",
|
||||
"user.group.id_signed",
|
||||
"user.login.status",
|
||||
"user.login.type",
|
||||
"user.login.tty",
|
||||
"user.password.status",
|
||||
"user.password.last_change",
|
||||
"user.password.expiration_date",
|
||||
"user.roles",
|
||||
"user.last_login",
|
||||
"process.pid",
|
||||
"host.ip",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,212 +2,214 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-sca*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.id",
|
||||
"agent.groups",
|
||||
"check.name",
|
||||
"check.id",
|
||||
"checksum.hash.sha1",
|
||||
"host.name",
|
||||
"host.os.type",
|
||||
"host.os.version",
|
||||
"policy.id",
|
||||
"policy.name",
|
||||
"policy.file",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "5s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"check": {
|
||||
"properties": {
|
||||
"compliance": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"condition": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"description": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"rationale": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"reason": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"references": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"remediation": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"result": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"rules": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"check": {
|
||||
"properties": {
|
||||
"compliance": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"condition": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"description": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"rationale": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"reason": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"references": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"remediation": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"result": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"rules": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"policy": {
|
||||
"properties": {
|
||||
"description": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"file": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"references": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"policy": {
|
||||
"properties": {
|
||||
"description": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"file": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"references": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.id",
|
||||
"agent.groups",
|
||||
"check.name",
|
||||
"check.id",
|
||||
"checksum.hash.sha1",
|
||||
"host.name",
|
||||
"host.os.type",
|
||||
"host.os.version",
|
||||
"policy.id",
|
||||
"policy.name",
|
||||
"policy.file",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "5s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -2,336 +2,338 @@
|
||||
"index_patterns": [
|
||||
"wazuh-states-vulnerabilities*"
|
||||
],
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"build": {
|
||||
"properties": {
|
||||
"original": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"auto_expand_replicas": "0-1",
|
||||
"codec": "best_compression",
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"package.architecture",
|
||||
"package.category",
|
||||
"package.description",
|
||||
"package.installed",
|
||||
"package.multiarch",
|
||||
"package.name",
|
||||
"package.path",
|
||||
"package.priority",
|
||||
"package.size",
|
||||
"package.source",
|
||||
"package.type",
|
||||
"package.vendor",
|
||||
"package.version",
|
||||
"vulnerability.id",
|
||||
"vulnerability.description",
|
||||
"vulnerability.severity",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
},
|
||||
"mappings": {
|
||||
"date_detection": false,
|
||||
"dynamic": "strict",
|
||||
"properties": {
|
||||
"agent": {
|
||||
"properties": {
|
||||
"build": {
|
||||
"properties": {
|
||||
"original": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"ephemeral_id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ephemeral_id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"groups": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"hostname": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"ip": {
|
||||
"type": "ip"
|
||||
},
|
||||
"os": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"properties": {
|
||||
"hash": {
|
||||
"properties": {
|
||||
"sha1": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"os": {
|
||||
"properties": {
|
||||
"full": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"kernel": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"host": {
|
||||
"properties": {
|
||||
"os": {
|
||||
"properties": {
|
||||
"full": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"kernel": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"platform": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"package": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"build_version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"description": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"install_scope": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"installed": {
|
||||
"type": "date"
|
||||
},
|
||||
"license": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"reference": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"size": {
|
||||
"type": "long"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
}
|
||||
},
|
||||
"vulnerability": {
|
||||
"properties": {
|
||||
"category": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"classification": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"description": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"detected_at": {
|
||||
"type": "date"
|
||||
},
|
||||
"enumeration": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"published_at": {
|
||||
"type": "date"
|
||||
},
|
||||
"reference": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"report_id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"scanner": {
|
||||
"properties": {
|
||||
"condition": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"reference": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"source": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"vendor": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"package": {
|
||||
"properties": {
|
||||
"architecture": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"build_version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"checksum": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"description": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"install_scope": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"installed": {
|
||||
"type": "date"
|
||||
},
|
||||
"license": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"path": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"reference": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"size": {
|
||||
"type": "long"
|
||||
},
|
||||
"type": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"score": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"type": "float"
|
||||
},
|
||||
"environmental": {
|
||||
"type": "float"
|
||||
},
|
||||
"temporal": {
|
||||
"type": "float"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"severity": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"under_evaluation": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"state": {
|
||||
"properties": {
|
||||
"document_version": {
|
||||
"type": "integer"
|
||||
},
|
||||
"modified_at": {
|
||||
"type": "date"
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
},
|
||||
"vulnerability": {
|
||||
"properties": {
|
||||
"category": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"classification": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"description": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"detected_at": {
|
||||
"type": "date"
|
||||
},
|
||||
"enumeration": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"published_at": {
|
||||
"type": "date"
|
||||
},
|
||||
"reference": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"report_id": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"scanner": {
|
||||
"properties": {
|
||||
"condition": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"reference": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"source": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"vendor": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"score": {
|
||||
"properties": {
|
||||
"base": {
|
||||
"type": "float"
|
||||
},
|
||||
"environmental": {
|
||||
"type": "float"
|
||||
},
|
||||
"temporal": {
|
||||
"type": "float"
|
||||
},
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"severity": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"under_evaluation": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"wazuh": {
|
||||
"properties": {
|
||||
"cluster": {
|
||||
"properties": {
|
||||
"name": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
},
|
||||
"node": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
},
|
||||
"schema": {
|
||||
"properties": {
|
||||
"version": {
|
||||
"ignore_above": 1024,
|
||||
"type": "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"order": 1,
|
||||
"settings": {
|
||||
"index": {
|
||||
"auto_expand_replicas": "0-1",
|
||||
"codec": "best_compression",
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"query.default_field": [
|
||||
"agent.host.architecture",
|
||||
"agent.host.ip",
|
||||
"agent.id",
|
||||
"agent.name",
|
||||
"agent.version",
|
||||
"package.architecture",
|
||||
"package.category",
|
||||
"package.description",
|
||||
"package.installed",
|
||||
"package.multiarch",
|
||||
"package.name",
|
||||
"package.path",
|
||||
"package.priority",
|
||||
"package.size",
|
||||
"package.source",
|
||||
"package.type",
|
||||
"package.vendor",
|
||||
"package.version",
|
||||
"vulnerability.id",
|
||||
"vulnerability.description",
|
||||
"vulnerability.severity",
|
||||
"state.modified_at",
|
||||
"wazuh.cluster.name",
|
||||
"wazuh.cluster.node",
|
||||
"wazuh.schema.version"
|
||||
],
|
||||
"refresh_interval": "2s"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,254 +1,256 @@
|
||||
{
|
||||
"order": 1,
|
||||
"index_patterns": [
|
||||
"wazuh-statistics*"
|
||||
],
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"refresh_interval": "5s"
|
||||
}
|
||||
},
|
||||
"mappings" : {
|
||||
"dynamic_templates" : [
|
||||
{
|
||||
"string_as_keyword" : {
|
||||
"match_mapping_type" : "string",
|
||||
"mapping" : {
|
||||
"type" : "keyword"
|
||||
}
|
||||
}
|
||||
"priority": 1,
|
||||
"template": {
|
||||
"settings": {
|
||||
"index": {
|
||||
"number_of_replicas": "0",
|
||||
"number_of_shards": "1",
|
||||
"refresh_interval": "5s"
|
||||
}
|
||||
],
|
||||
"properties" : {
|
||||
"analysisd" : {
|
||||
"properties" : {
|
||||
"alerts_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"alerts_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"alerts_written" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"archives_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"archives_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"dbsync_mdps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"dbsync_messages_dispatched" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"dbsync_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"dbsync_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"event_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"event_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"events_dropped" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"events_edps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"events_processed" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"events_received" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"firewall_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"firewall_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"firewall_written" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"fts_written" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"hostinfo_edps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"hostinfo_events_decoded" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"hostinfo_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"hostinfo_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"other_events_decoded" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"other_events_edps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"rootcheck_edps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"rootcheck_events_decoded" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"rootcheck_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"rootcheck_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"rule_matching_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"rule_matching_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"sca_edps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"sca_events_decoded" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"sca_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"sca_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"statistical_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"statistical_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"syscheck_edps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"syscheck_events_decoded" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"syscheck_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"syscheck_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"syscollector_edps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"syscollector_events_decoded" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"syscollector_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"syscollector_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"total_events_decoded" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"upgrade_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"upgrade_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"winevt_edps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"winevt_events_decoded" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"winevt_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"winevt_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"mappings" : {
|
||||
"dynamic_templates" : [
|
||||
{
|
||||
"string_as_keyword" : {
|
||||
"match_mapping_type" : "string",
|
||||
"mapping" : {
|
||||
"type" : "keyword"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"apiName" : {
|
||||
"type" : "text",
|
||||
"fields" : {
|
||||
"keyword" : {
|
||||
"type" : "keyword",
|
||||
"ignore_above" : 256
|
||||
],
|
||||
"properties" : {
|
||||
"analysisd" : {
|
||||
"properties" : {
|
||||
"alerts_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"alerts_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"alerts_written" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"archives_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"archives_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"dbsync_mdps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"dbsync_messages_dispatched" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"dbsync_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"dbsync_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"event_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"event_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"events_dropped" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"events_edps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"events_processed" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"events_received" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"firewall_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"firewall_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"firewall_written" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"fts_written" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"hostinfo_edps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"hostinfo_events_decoded" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"hostinfo_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"hostinfo_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"other_events_decoded" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"other_events_edps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"rootcheck_edps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"rootcheck_events_decoded" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"rootcheck_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"rootcheck_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"rule_matching_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"rule_matching_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"sca_edps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"sca_events_decoded" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"sca_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"sca_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"statistical_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"statistical_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"syscheck_edps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"syscheck_events_decoded" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"syscheck_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"syscheck_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"syscollector_edps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"syscollector_events_decoded" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"syscollector_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"syscollector_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"total_events_decoded" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"upgrade_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"upgrade_queue_usage" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"winevt_edps" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"winevt_events_decoded" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"winevt_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"winevt_queue_usage" : {
|
||||
"type" : "long"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"cluster" : {
|
||||
"type" : "text",
|
||||
"fields" : {
|
||||
"keyword" : {
|
||||
"type" : "keyword",
|
||||
"ignore_above" : 256
|
||||
},
|
||||
"apiName" : {
|
||||
"type" : "text",
|
||||
"fields" : {
|
||||
"keyword" : {
|
||||
"type" : "keyword",
|
||||
"ignore_above" : 256
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"nodeName" : {
|
||||
"type" : "text",
|
||||
"fields" : {
|
||||
"keyword" : {
|
||||
"type" : "keyword",
|
||||
"ignore_above" : 256
|
||||
},
|
||||
"cluster" : {
|
||||
"type" : "text",
|
||||
"fields" : {
|
||||
"keyword" : {
|
||||
"type" : "keyword",
|
||||
"ignore_above" : 256
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"name" : {
|
||||
"type" : "keyword"
|
||||
},
|
||||
"remoted" : {
|
||||
"properties" : {
|
||||
"ctrl_msg_count" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"dequeued_after_close" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"discarded_count" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"evt_count" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"msg_sent" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"queue_size" : {
|
||||
"type" : "keyword"
|
||||
},
|
||||
"recv_bytes" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"tcp_sessions" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"total_queue_size" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"nodeName" : {
|
||||
"type" : "text",
|
||||
"fields" : {
|
||||
"keyword" : {
|
||||
"type" : "keyword",
|
||||
"ignore_above" : 256
|
||||
}
|
||||
}
|
||||
},
|
||||
"name" : {
|
||||
"type" : "keyword"
|
||||
},
|
||||
"remoted" : {
|
||||
"properties" : {
|
||||
"ctrl_msg_count" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"dequeued_after_close" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"discarded_count" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"evt_count" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"msg_sent" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"queue_size" : {
|
||||
"type" : "keyword"
|
||||
},
|
||||
"recv_bytes" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"tcp_sessions" : {
|
||||
"type" : "long"
|
||||
},
|
||||
"total_queue_size" : {
|
||||
"type" : "long"
|
||||
}
|
||||
}
|
||||
},
|
||||
"status" : {
|
||||
"type" : "keyword"
|
||||
},
|
||||
"timestamp" : {
|
||||
"type" : "date",
|
||||
"format" : "dateOptionalTime"
|
||||
}
|
||||
},
|
||||
"status" : {
|
||||
"type" : "keyword"
|
||||
},
|
||||
"timestamp" : {
|
||||
"type" : "date",
|
||||
"format" : "dateOptionalTime"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -29,10 +29,9 @@ import org.opensearch.transport.client.Client;
|
||||
import org.opensearch.transport.client.IndicesAdminClient;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import com.wazuh.setup.utils.IndexUtils;
|
||||
import com.wazuh.setup.utils.JsonUtils;
|
||||
|
||||
import static org.mockito.Mockito.*;
|
||||
|
||||
@ -42,7 +41,7 @@ public class IndexStateManagementTests extends OpenSearchTestCase {
|
||||
private IndexStateManagement ismIndex;
|
||||
private Client client;
|
||||
private IndicesAdminClient indicesAdminClient;
|
||||
private IndexUtils indexUtils;
|
||||
private JsonUtils jsonUtils;
|
||||
|
||||
@Override
|
||||
public void setUp() throws Exception {
|
||||
@ -51,7 +50,7 @@ public class IndexStateManagementTests extends OpenSearchTestCase {
|
||||
this.client = mock(Client.class);
|
||||
AdminClient adminClient = mock(AdminClient.class);
|
||||
this.indicesAdminClient = mock(IndicesAdminClient.class);
|
||||
this.indexUtils = mock(IndexUtils.class);
|
||||
this.jsonUtils = mock(JsonUtils.class);
|
||||
|
||||
// Default settings
|
||||
ClusterService clusterService = mock(ClusterService.class);
|
||||
@ -62,9 +61,9 @@ public class IndexStateManagementTests extends OpenSearchTestCase {
|
||||
doReturn(this.indicesAdminClient).when(adminClient).indices();
|
||||
|
||||
this.ismIndex =
|
||||
spy(new IndexStateManagement(IndexStateManagement.ISM_INDEX_NAME, "ism-template"));
|
||||
spy(new IndexStateManagement(IndexStateManagement.ISM_INDEX_NAME, "templates/ism-config"));
|
||||
this.ismIndex.setClient(this.client);
|
||||
this.ismIndex.setIndexUtils(this.indexUtils);
|
||||
this.ismIndex.setUtils(this.jsonUtils);
|
||||
this.ismIndex.setClusterService(clusterService);
|
||||
}
|
||||
|
||||
@ -75,33 +74,33 @@ public class IndexStateManagementTests extends OpenSearchTestCase {
|
||||
* @throws IOException if an error occurs while reading the policy file
|
||||
*/
|
||||
public void testInitialize_CreatesIndexAndPolicies() throws IOException {
|
||||
Map<String, Object> template = new HashMap<>();
|
||||
template.put("settings", Settings.builder().build());
|
||||
template.put("mappings", Map.of());
|
||||
|
||||
// Mock indexExists to return false so createIndex is called
|
||||
doReturn(false).when(this.ismIndex).indexExists(IndexStateManagement.ISM_INDEX_NAME);
|
||||
doReturn(template).when(this.indexUtils).fromFile("ism-template.json");
|
||||
doReturn(template.get("mappings")).when(this.indexUtils).get(template, "mappings");
|
||||
|
||||
// Mock the CreateIndexResponse
|
||||
CreateIndexResponse createResponse = mock(CreateIndexResponse.class);
|
||||
doReturn(IndexStateManagement.ISM_INDEX_NAME).when(createResponse).index();
|
||||
|
||||
ActionFuture actionFuture = mock(ActionFuture.class);
|
||||
|
||||
doReturn(actionFuture).when(this.indicesAdminClient).create(any(CreateIndexRequest.class));
|
||||
ActionFuture<CreateIndexResponse> createIndexFuture = mock(ActionFuture.class);
|
||||
doReturn(createResponse).when(createIndexFuture).actionGet(anyLong());
|
||||
doReturn(createIndexFuture).when(this.indicesAdminClient).create(any(CreateIndexRequest.class));
|
||||
|
||||
// Mock the policy file loading
|
||||
Map<String, Object> policyFile = Map.of("policy", "definition");
|
||||
doReturn(policyFile)
|
||||
.when(this.indexUtils)
|
||||
.when(this.jsonUtils)
|
||||
.fromFile(IndexStateManagement.STREAM_ROLLOVER_POLICY_PATH);
|
||||
|
||||
doReturn(actionFuture).when(this.client).index(any(IndexRequest.class));
|
||||
|
||||
doReturn(createResponse).when(actionFuture).actionGet(anyLong());
|
||||
// Mock the policy indexing
|
||||
ActionFuture indexFuture = mock(ActionFuture.class);
|
||||
doReturn(indexFuture).when(this.client).index(any(IndexRequest.class));
|
||||
doReturn(null).when(indexFuture).actionGet(anyLong());
|
||||
|
||||
this.ismIndex.initialize();
|
||||
|
||||
// Verify that the index was created with the correct request
|
||||
verify(this.indicesAdminClient).create(any(CreateIndexRequest.class));
|
||||
// Verify that the policy was indexed
|
||||
verify(this.client).index(any(IndexRequest.class));
|
||||
}
|
||||
|
||||
@ -128,7 +127,7 @@ public class IndexStateManagementTests extends OpenSearchTestCase {
|
||||
public void testPolicyFileMissing_LogsError() throws IOException {
|
||||
doReturn(true).when(this.ismIndex).indexExists(IndexStateManagement.ISM_INDEX_NAME);
|
||||
doThrow(new IOException("file not found"))
|
||||
.when(indexUtils)
|
||||
.when(jsonUtils)
|
||||
.fromFile(IndexStateManagement.STREAM_ROLLOVER_POLICY_PATH);
|
||||
|
||||
this.ismIndex.initialize();
|
||||
@ -147,9 +146,7 @@ public class IndexStateManagementTests extends OpenSearchTestCase {
|
||||
doReturn(true).when(this.ismIndex).indexExists(IndexStateManagement.ISM_INDEX_NAME);
|
||||
|
||||
Map<String, Object> policyFile = Map.of("policy", "definition");
|
||||
doReturn(policyFile)
|
||||
.when(indexUtils)
|
||||
.fromFile(IndexStateManagement.STREAM_ROLLOVER_POLICY_PATH);
|
||||
doReturn(policyFile).when(jsonUtils).fromFile(IndexStateManagement.STREAM_ROLLOVER_POLICY_PATH);
|
||||
doThrow(new ResourceAlreadyExistsException("already exists"))
|
||||
.when(this.client)
|
||||
.index(any(IndexRequest.class));
|
||||
@ -158,4 +155,14 @@ public class IndexStateManagementTests extends OpenSearchTestCase {
|
||||
|
||||
// Verifies that exception is caught and logged
|
||||
}
|
||||
|
||||
/**
|
||||
* Verifies that IOException while reading a file is caught and logged.
|
||||
*
|
||||
* @throws IOException if there is an error reading the file
|
||||
*/
|
||||
public void testFileIOException() throws IOException {
|
||||
doThrow(new IOException("Test failed successfully")).when(this.jsonUtils).fromFile(anyString());
|
||||
this.ismIndex.indexPolicy("test-template");
|
||||
}
|
||||
}
|
||||
|
||||
@ -18,7 +18,6 @@ package com.wazuh.setup.index;
|
||||
|
||||
import org.opensearch.action.admin.indices.create.CreateIndexRequest;
|
||||
import org.opensearch.action.admin.indices.create.CreateIndexResponse;
|
||||
import org.opensearch.action.admin.indices.template.put.PutIndexTemplateRequest;
|
||||
import org.opensearch.action.support.clustermanager.AcknowledgedResponse;
|
||||
import org.opensearch.cluster.ClusterState;
|
||||
import org.opensearch.cluster.routing.RoutingTable;
|
||||
@ -30,11 +29,7 @@ import org.opensearch.transport.client.AdminClient;
|
||||
import org.opensearch.transport.client.Client;
|
||||
import org.opensearch.transport.client.IndicesAdminClient;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import com.wazuh.setup.utils.IndexUtils;
|
||||
import com.wazuh.setup.utils.JsonUtils;
|
||||
|
||||
import static org.mockito.Mockito.*;
|
||||
|
||||
@ -42,21 +37,22 @@ import static org.mockito.Mockito.*;
|
||||
public class IndexTests extends OpenSearchTestCase {
|
||||
|
||||
private Index index;
|
||||
private Client client;
|
||||
private IndicesAdminClient indicesAdminClient;
|
||||
private RoutingTable routingTable;
|
||||
private IndexUtils indexUtils;
|
||||
private JsonUtils jsonUtils;
|
||||
|
||||
@Override
|
||||
public void setUp() throws Exception {
|
||||
super.setUp();
|
||||
|
||||
Client client = mock(Client.class);
|
||||
this.client = mock(Client.class);
|
||||
AdminClient adminClient = mock(AdminClient.class);
|
||||
this.indicesAdminClient = mock(IndicesAdminClient.class);
|
||||
ClusterService clusterService = mock(ClusterService.class);
|
||||
this.routingTable = mock(RoutingTable.class);
|
||||
ClusterState clusterState = mock(ClusterState.class);
|
||||
this.indexUtils = mock(IndexUtils.class);
|
||||
this.jsonUtils = mock(JsonUtils.class);
|
||||
|
||||
// Default settings
|
||||
Settings settings = Settings.builder().build();
|
||||
@ -64,11 +60,11 @@ public class IndexTests extends OpenSearchTestCase {
|
||||
|
||||
// Concrete implementation of abstract class
|
||||
this.index = new Index("test-index", "test-template") {};
|
||||
this.index.setClient(client);
|
||||
this.index.setClient(this.client);
|
||||
this.index.setClusterService(clusterService);
|
||||
this.index.setIndexUtils(indexUtils);
|
||||
this.index.setUtils(jsonUtils);
|
||||
|
||||
doReturn(adminClient).when(client).admin();
|
||||
doReturn(adminClient).when(this.client).admin();
|
||||
doReturn(this.indicesAdminClient).when(adminClient).indices();
|
||||
doReturn(clusterState).when(clusterService).state();
|
||||
doReturn(this.routingTable).when(clusterState).getRoutingTable();
|
||||
@ -98,43 +94,21 @@ public class IndexTests extends OpenSearchTestCase {
|
||||
verify(this.indicesAdminClient, never()).create(any());
|
||||
}
|
||||
|
||||
/**
|
||||
* Verifies that template creation is successful when valid data is returned from file.
|
||||
*
|
||||
* @throws IOException if there is an error reading the template file
|
||||
*/
|
||||
public void testCreateTemplateSuccess() throws IOException {
|
||||
Map<String, Object> templateMap =
|
||||
Map.of(
|
||||
"settings", Settings.builder().build(),
|
||||
"mappings", Map.of(),
|
||||
"index_patterns", List.of("test-*"));
|
||||
|
||||
doReturn(templateMap).when(this.indexUtils).fromFile("test-template.json");
|
||||
doReturn(templateMap.get("mappings")).when(this.indexUtils).get(templateMap, "mappings");
|
||||
|
||||
/** Verifies that template creation is successful when valid data is returned from file. */
|
||||
public void testCreateTemplateSuccess() {
|
||||
// Mock the response for client.execute()
|
||||
AcknowledgedResponse ackResponse = mock(AcknowledgedResponse.class);
|
||||
ActionFuture actionFuture = mock(ActionFuture.class);
|
||||
doReturn(ackResponse).when(actionFuture).actionGet(anyLong());
|
||||
doReturn(actionFuture)
|
||||
.when(this.indicesAdminClient)
|
||||
.putTemplate(any(PutIndexTemplateRequest.class));
|
||||
this.index.createTemplate("test-template");
|
||||
|
||||
verify(this.indicesAdminClient).putTemplate(any(PutIndexTemplateRequest.class));
|
||||
}
|
||||
// Mock client.execute() which is what createTemplate actually uses
|
||||
doReturn(actionFuture).when(this.client).execute(any(), any());
|
||||
|
||||
/**
|
||||
* Verifies that IOException while reading template file is caught and logged.
|
||||
*
|
||||
* @throws IOException if there is an error reading the template file
|
||||
*/
|
||||
public void testCreateTemplateIOException() throws IOException {
|
||||
doThrow(new IOException("test")).when(this.indexUtils).fromFile("test-template.json");
|
||||
// Call createTemplate with a real template file that exists
|
||||
this.index.createTemplate("templates/ism-config");
|
||||
|
||||
this.index.createTemplate("test-template");
|
||||
|
||||
// Expect error to be logged but not thrown
|
||||
// Verify that client.execute was called
|
||||
verify(this.client).execute(any(), any());
|
||||
}
|
||||
|
||||
/** Verifies that initialize() invokes both createTemplate and createIndex in order. */
|
||||
|
||||
@ -16,9 +16,7 @@
|
||||
*/
|
||||
package com.wazuh.setup.index;
|
||||
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.create.CreateIndexRequest;
|
||||
import org.opensearch.action.admin.indices.create.CreateIndexResponse;
|
||||
import org.opensearch.action.support.clustermanager.AcknowledgedResponse;
|
||||
import org.opensearch.cluster.ClusterState;
|
||||
import org.opensearch.cluster.routing.RoutingTable;
|
||||
import org.opensearch.cluster.service.ClusterService;
|
||||
@ -29,7 +27,7 @@ import org.opensearch.transport.client.AdminClient;
|
||||
import org.opensearch.transport.client.Client;
|
||||
import org.opensearch.transport.client.IndicesAdminClient;
|
||||
|
||||
import com.wazuh.setup.utils.IndexUtils;
|
||||
import com.wazuh.setup.utils.JsonUtils;
|
||||
|
||||
import static org.mockito.ArgumentMatchers.any;
|
||||
import static org.mockito.Mockito.*;
|
||||
@ -37,9 +35,9 @@ import static org.mockito.Mockito.*;
|
||||
/** Unit tests for the {@link StreamIndex} class. */
|
||||
public class StreamIndexTests extends OpenSearchTestCase {
|
||||
|
||||
private static final String STREAM_INDEX = "stream-index";
|
||||
private StreamIndex streamIndex;
|
||||
private IndicesAdminClient indicesAdminClient;
|
||||
private RoutingTable routingTable;
|
||||
|
||||
@Override
|
||||
public void setUp() throws Exception {
|
||||
@ -49,57 +47,56 @@ public class StreamIndexTests extends OpenSearchTestCase {
|
||||
AdminClient adminClient = mock(AdminClient.class);
|
||||
this.indicesAdminClient = mock(IndicesAdminClient.class);
|
||||
ClusterService clusterService = mock(ClusterService.class);
|
||||
this.routingTable = mock(RoutingTable.class);
|
||||
RoutingTable routingTable = mock(RoutingTable.class);
|
||||
ClusterState clusterState = mock(ClusterState.class);
|
||||
|
||||
// Default settings
|
||||
Settings settings = Settings.builder().build();
|
||||
doReturn(settings).when(clusterService).getSettings();
|
||||
|
||||
this.streamIndex = new StreamIndex("stream-index", "stream-template", "stream-alias");
|
||||
this.streamIndex = new StreamIndex(STREAM_INDEX, "stream-template");
|
||||
this.streamIndex.setClient(client);
|
||||
this.streamIndex.setClusterService(clusterService);
|
||||
this.streamIndex.setIndexUtils(mock(IndexUtils.class));
|
||||
this.streamIndex.setUtils(mock(JsonUtils.class));
|
||||
|
||||
doReturn(adminClient).when(client).admin();
|
||||
doReturn(this.indicesAdminClient).when(adminClient).indices();
|
||||
doReturn(clusterState).when(clusterService).state();
|
||||
doReturn(this.routingTable).when(clusterState).getRoutingTable();
|
||||
doReturn(routingTable).when(clusterState).getRoutingTable();
|
||||
}
|
||||
|
||||
/**
|
||||
* Verifies that createIndex adds the alias and calls the create method when the index does not
|
||||
* exist.
|
||||
* Verifies that createIndex handles ResourceAlreadyExistsException gracefully when the data
|
||||
* stream already exists.
|
||||
*/
|
||||
public void testCreateIndexWithAlias() {
|
||||
doReturn(false).when(this.routingTable).hasIndex("stream-index");
|
||||
public void testCreateIndexWhenAlreadyExists() {
|
||||
// Mock createDataStream to throw ResourceAlreadyExistsException
|
||||
ActionFuture actionFuture = mock(ActionFuture.class);
|
||||
doThrow(new org.opensearch.ResourceAlreadyExistsException("Data stream already exists"))
|
||||
.when(actionFuture)
|
||||
.actionGet(anyLong());
|
||||
doReturn(actionFuture).when(this.indicesAdminClient).createDataStream(any());
|
||||
|
||||
// Should not throw exception - it should be caught and logged
|
||||
this.streamIndex.createIndex(STREAM_INDEX);
|
||||
|
||||
// Verify createDataStream was called once
|
||||
verify(this.indicesAdminClient).createDataStream(any());
|
||||
}
|
||||
|
||||
/** Verifies that createIndex successfully creates a data stream when it doesn't exist. */
|
||||
public void testCreateIndexSuccess() {
|
||||
// Mock successful data stream creation
|
||||
AcknowledgedResponse response = mock(AcknowledgedResponse.class);
|
||||
// doReturn(true).when(response).isAcknowledged();
|
||||
|
||||
CreateIndexResponse response = mock(CreateIndexResponse.class);
|
||||
doReturn("stream-index").when(response).index();
|
||||
ActionFuture actionFuture = mock(ActionFuture.class);
|
||||
doReturn(response).when(actionFuture).actionGet(anyLong());
|
||||
doReturn(actionFuture).when(this.indicesAdminClient).create(any(CreateIndexRequest.class));
|
||||
doReturn(actionFuture).when(this.indicesAdminClient).createDataStream(any());
|
||||
|
||||
this.streamIndex.createIndex("stream-index");
|
||||
this.streamIndex.createIndex(STREAM_INDEX);
|
||||
|
||||
verify(this.indicesAdminClient)
|
||||
.create(
|
||||
argThat(
|
||||
req -> {
|
||||
Alias alias = req.aliases().stream().findFirst().orElse(null);
|
||||
return req.index().equals("stream-index")
|
||||
&& alias != null
|
||||
&& "stream-alias".equals(alias.name())
|
||||
&& Boolean.TRUE.equals(alias.writeIndex());
|
||||
}));
|
||||
}
|
||||
|
||||
/** Verifies that createIndex skips index creation if the index already exists. */
|
||||
public void testCreateIndexWhenAlreadyExists() {
|
||||
doReturn(true).when(this.routingTable).hasIndex("stream-index");
|
||||
|
||||
this.streamIndex.createIndex("stream-index");
|
||||
|
||||
verify(this.indicesAdminClient, never()).create(any());
|
||||
// Verify createDataStream was called
|
||||
verify(this.indicesAdminClient).createDataStream(any());
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user