-
Notifications
You must be signed in to change notification settings - Fork 1
/
es-legacy-index-template.sh
executable file
·58 lines (56 loc) · 1.76 KB
/
es-legacy-index-template.sh
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
#!/usr/bin/env bash
curl -XDELETE "${ES_HOST:-localhost}:${ES_PORT:-9200}/_template/statsd-template"
curl -XDELETE "${ES_HOST:-localhost}:${ES_PORT:-9200}/statsd-network_data"
curl -XPUT "${ES_HOST:-localhost}:${ES_PORT:-9200}/_template/statsd-template" -d '
{
"template" : "statsd-*",
"settings" : {
"number_of_shards" : 1
},
"mappings" : {
"counter" : {
"_source" : { "enabled" : true },
"properties": {
"@timestamp": {
"type": "date"
},
"AndroidOSVersion": {
"type": "string",
"index": "not_analyzed"
},
"AppPackage": {
"type": "string",
"index": "not_analyzed"
},
"VersionName": {
"type": "string",
"index": "not_analyzed"
},
"BatterySaverOn": {
"type": "string",
"index": "not_analyzed"
},
"DeviceModel": {
"type": "string",
"index": "not_analyzed"
},
"InstallationUUID": {
"type": "string",
"index": "not_analyzed"
},
"NumberOfCores": {
"type": "string",
"index": "not_analyzed"
},
"ScreenDensity": {
"type": "string",
"index": "not_analyzed"
},
"ScreenSize": {
"type": "string",
"index": "not_analyzed"
}
}
}
}
}'