· 7 years ago · Jul 30, 2018, 04:42 PM
1{
2 "cluster": {"name": "testcluster"},
3 "cloud": {
4 "aws": {
5 "access_key": "<redacted>",
6 "secret_key": "<redacted>"
7 }
8 },
9 "discovery": { "type": "ec2" },
10 "index": {
11 "analysis": {
12 "analyzer": {
13 "std": {
14 "type": "custom",
15 "tokenizer": "standard",
16 "filter": ["standard", "lowercase", "stop", "asciifolding", "porterStem"]
17 },
18 "names": {
19 "type": "custom",
20 "tokenizer": "standard",
21 "filter": ["standard", "lowercase", "asciifolding"]
22 },
23 "tags": {
24 "type": "custom",
25 "tokenizer": "standard",
26 "filter": ["standard", "lowercase", "asciifolding"]
27 }
28 }
29 }
30 }
31}