forked from opensearch-project/OpenSearch
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
130 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM python:latest | ||
|
||
RUN apt-get update && \ | ||
apt-get upgrade && \ | ||
apt-get install \ | ||
git && \ | ||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \ | ||
git clone https://github.com/elastic/ecs.git | ||
|
||
# Change this to a volume | ||
ADD docker/ecs/images/generate.sh ecs/generate.sh | ||
ADD . wazuh-indexer/ |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
set -u | ||
|
||
# Function to display usage information | ||
show_usage() { | ||
echo "Usage: $0 <ECS_VERSION> <INDEXER_SRC> <MODULE> [--upload <URL>]" | ||
echo " * ECS_VERSION: ECS version to generate mappings for" | ||
echo " * INDEXER_SRC: Path to the wazuh-indexer repository" | ||
echo " * MODULE: Module to generate mappings for" | ||
echo " * --upload <URL>: Upload generated index template to the OpenSearch cluster. Defaults to https://localhost:9200" | ||
echo "Example: $0 v8.11.0 ~/wazuh-indexer vulnerability-detector --upload https://indexer:9200" | ||
} | ||
|
||
# Function to remove multi-fields from the generated index template | ||
remove_multi_fields() { | ||
local IN_FILE="$1" | ||
local OUT_FILE="$2" | ||
|
||
jq 'del( | ||
.mappings.properties.host.properties.os.properties.full.fields, | ||
.mappings.properties.host.properties.os.properties.name.fields, | ||
.mappings.properties.vulnerability.properties.description.fields | ||
)' "$IN_FILE" > "$OUT_FILE" | ||
} | ||
|
||
|
||
# Function to generate mappings | ||
generate_mappings() { | ||
local IN_FILES_DIR="$INDEXER_SRC/ecs/$MODULE/fields" | ||
local OUT_DIR="$INDEXER_SRC/ecs/$MODULE/mappings/$ECS_VERSION" | ||
|
||
# Ensure the output directory exists | ||
mkdir -p "$OUT_DIR" || exit 1 | ||
|
||
# Generate mappings | ||
python scripts/generator.py --strict --ref "$ECS_VERSION" \ | ||
--include "$IN_FILES_DIR/custom/" \ | ||
--subset "$IN_FILES_DIR/subset.yml" \ | ||
--template-settings "$IN_FILES_DIR/template-settings.json" \ | ||
--template-settings-legacy "$IN_FILES_DIR/template-settings-legacy.json" \ | ||
--mapping-settings "$IN_FILES_DIR/mapping-settings.json" \ | ||
--out "$OUT_DIR" || exit 1 | ||
|
||
# Replace "constant_keyword" type (not supported by OpenSearch) with "keyword" | ||
echo "Replacing \"constant_keyword\" type with \"keyword\"" | ||
find "$OUT_DIR" -type f -exec sed -i 's/constant_keyword/keyword/g' {} \; | ||
|
||
# Replace "flattened" type (not supported by OpenSearch) with "flat_object" | ||
echo "Replacing \"flattened\" type with \"flat_object\"" | ||
find "$OUT_DIR" -type f -exec sed -i 's/flattened/flat_object/g' {} \; | ||
|
||
# Replace "scaled_float" type with "float" | ||
echo "Replacing \"scaled_float\" type with \"float\"" | ||
find "$OUT_DIR" -type f -exec sed -i 's/scaled_float/float/g' {} \; | ||
echo "Removing scaling_factor lines" | ||
find "$OUT_DIR" -type f -exec sed -i '/scaling_factor/d' {} \; | ||
|
||
local IN_FILE="$OUT_DIR/generated/elasticsearch/legacy/template.json" | ||
local OUT_FILE="$OUT_DIR/generated/elasticsearch/legacy/template-tmp.json" | ||
|
||
# Delete the "tags" field from the index template | ||
echo "Deleting the \"tags\" field from the index template" | ||
jq 'del(.mappings.properties.tags)' "$IN_FILE" > "$OUT_FILE" | ||
mv "$OUT_FILE" "$IN_FILE" | ||
|
||
# Remove multi-fields from the generated index template | ||
echo "Removing multi-fields from the index template" | ||
remove_multi_fields "$IN_FILE" "$OUT_FILE" | ||
mv "$OUT_FILE" "$IN_FILE" | ||
|
||
# Transform legacy index template for OpenSearch compatibility | ||
cat "$IN_FILE" | jq '{ | ||
"index_patterns": .index_patterns, | ||
"priority": .order, | ||
"template": { | ||
"settings": .settings, | ||
"mappings": .mappings | ||
} | ||
}' >"$OUT_DIR/generated/elasticsearch/legacy/opensearch-template.json" | ||
|
||
# Check if the --upload flag has been provided | ||
if [ "$UPLOAD" == "--upload" ]; then | ||
upload_mappings "$OUT_DIR" "$URL" || exit 1 | ||
fi | ||
|
||
echo "Mappings saved to $OUT_DIR" | ||
} | ||
|
||
# Function to upload generated composable index template to the OpenSearch cluster | ||
upload_mappings() { | ||
local OUT_DIR="$1" | ||
local URL="$2" | ||
|
||
echo "Uploading index template to the OpenSearch cluster" | ||
for file in "$OUT_DIR/generated/elasticsearch/composable/component"/*.json; do | ||
component_name=$(basename "$file" .json) | ||
echo "Uploading $component_name" | ||
curl -u admin:admin -X PUT "$URL/_component_template/$component_name?pretty" -H 'Content-Type: application/json' -d@"$file" || exit 1 | ||
done | ||
} | ||
|
||
# Check if the minimum required arguments have been provided | ||
if [ $# -lt 3 ]; then | ||
show_usage | ||
exit 1 | ||
fi | ||
|
||
# Parse command line arguments | ||
ECS_VERSION="$1" | ||
INDEXER_SRC="$2" | ||
MODULE="$3" | ||
UPLOAD="${4:-false}" | ||
URL="${5:-https://localhost:9200}" | ||
|
||
# Generate mappings | ||
generate_mappings "$ECS_VERSION" "$INDEXER_SRC" "$MODULE" "$UPLOAD" "$URL" |