-
Notifications
You must be signed in to change notification settings - Fork 1
/
f5-template.json
59 lines (59 loc) · 1.53 KB
/
f5-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
{
"index_patterns": ["f5-datastream", "f5int-datastream"],
"data_stream": { },
"priority": 100,
"template": {
"settings": {
"index.lifecycle.name": "f5elastic"
},
"mappings": {
"properties": {
"city": {
"type": "keyword"
},
"client": {
"type": "keyword"
},
"content-length": {
"type": "integer"
},
"country": {
"type": "keyword"
},
"host": {
"type": "keyword"
},
"location": {
"type": "geo_point"
},
"method": {
"type": "keyword"
},
"node": {
"type": "keyword"
},
"pool": {
"type": "keyword"
},
"referer": {
"type": "keyword"
},
"status": {
"type": "short"
},
"@timestamp": {
"type": "date"
},
"uri": {
"type": "keyword"
},
"user-agent": {
"type": "keyword"
},
"virtual": {
"type": "keyword"
}
}
}
}
}