Merge pull request #13414 from Security-Onion-Solutions/fix/system_mapping

Fix system mapping
This commit is contained in:
weslambert
2024-07-31 14:26:50 -04:00
committed by GitHub
2 changed files with 31 additions and 0 deletions

View File

@@ -9101,6 +9101,7 @@ elasticsearch:
- logs-system.auth@custom
- so-fleet_globals-1
- so-fleet_agent_id_verification-1
- so-system
data_stream:
allow_custom_routing: false
hidden: false
@@ -9195,6 +9196,7 @@ elasticsearch:
- logs-system.syslog@custom
- so-fleet_globals-1
- so-fleet_agent_id_verification-1
- so-system
data_stream:
allow_custom_routing: false
hidden: false

View File

@@ -0,0 +1,29 @@
{
"template": {
"mappings": {
"properties": {
"host": {
"properties":{
"ip": {
"type": "ip"
}
}
},
"related": {
"properties":{
"ip": {
"type": "ip"
}
}
},
"source": {
"properties":{
"ip": {
"type": "ip"
}
}
}
}
}
}
}