Skip to content

Commit

Permalink
upstream template style
Browse files Browse the repository at this point in the history
  • Loading branch information
tomrade committed Jul 25, 2020
1 parent 4871aeb commit 50d547f
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions es_stuff/index-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,19 @@
"index_patterns": ["evtx_nom","evtx_nom-*"],
"mappings": {
"dynamic_templates" : [
{"winlog" : {
"path_match" : "winlog.*",
"match_mapping_type": "string",
"mapping" : {
"type" : "keyword"
}
{ "strings_as_keywords" : {
"mapping": {
"ignore_above": 1024,
"type": "keyword"
},
"match_mapping_type": "string"
}
}
],
"properties": {
"event.original" : {"enabled" : false}
"@timestamp" : {"type" : "date"},
"event.original" : {"enabled" : false},
"message" : { "norms" : false, "type" : "text"}
}
},
"settings" : {
Expand Down

0 comments on commit 50d547f

Please sign in to comment.