ntopng/httpdocs/misc/ntopng_template_elk6.json
2024-04-30 04:31:33 -04:00

51 lines
No EOL
824 B
JSON

{
"index_patterns": "ntopng-*",
"settings": {
"index.refresh_interval": "5s"
},
"mappings": {
"date_detection": false,
"properties": {
"@timestamp": {
"type": "date"
}
},
"_doc": {
"dynamic_templates": [
{
"geo_fields": {
"match": "*_IP_LOCATION",
"mapping": {
"type": "geo_point"
}
}
},
{
"ip_fields": {
"match": "*IPV4*",
"match_mapping_type": "string",
"mapping": {
"type": "ip"
}
}
},
{
"strings_as_keywords": {
"match_mapping_type": "string",
"unmatch": "*IPV4*",
"mapping": {
"type": "text",
"norms": false,
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
}
]
}
}
}