-
Notifications
You must be signed in to change notification settings - Fork 520
/
packetbeat.template.json
63 lines (63 loc) · 1.26 KB
/
packetbeat.template.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"mappings": {
"_default_": {
"_all": {
"enabled": true,
"norms": {
"enabled": false
}
},
"dynamic_templates": [
{
"template1": {
"mapping": {
"doc_values": true,
"ignore_above": 1024,
"index": "not_analyzed",
"type": "{dynamic_type}"
},
"match": "*"
}
}
],
"properties": {
"@timestamp": {
"type": "date"
},
"client_location": {
"type": "geo_point"
},
"params": {
"index": "analyzed",
"norms": {
"enabled": false
},
"type": "string"
},
"query": {
"doc_values": true,
"index": "not_analyzed",
"type": "string"
},
"request": {
"index": "analyzed",
"norms": {
"enabled": false
},
"type": "string"
},
"response": {
"index": "analyzed",
"norms": {
"enabled": false
},
"type": "string"
}
}
}
},
"settings": {
"index.refresh_interval": "5s"
},
"template": "packetbeat-*"
}