We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf3955d commit a38b195Copy full SHA for a38b195
detection_rules/rule_validators.py
@@ -683,8 +683,12 @@ def validate_columns_index_mapping(
683
684
for column in query_columns:
685
column_name = column["name"]
686
+ # Skip Dynamic fields
687
if column_name.startswith(("Esql.", "Esql_priv.")):
688
continue
689
+ # Skip internal fields
690
+ if column_name in ("_id", "_index", "_type"):
691
+ continue
692
column_type = column["type"]
693
694
# Check if the column exists in combined_mappings or a valid field generated from a function or operator
0 commit comments