-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
typesense.config.json
93 lines (92 loc) · 3.16 KB
/
typesense.config.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"collections": [
{
"name": "docs_alias",
"file_path": "./public/search.json",
"synonyms": [
{
"id": "agent",
"synonyms": ["agent", "datadog agent", "dd-agent"]
},
{
"id": "azure",
"synonyms": ["microsoft azure", "azure"]
},
{
"id": "gcp",
"synonyms": ["gcp", "google cloud platform"]
},
{
"id": "aws",
"synonyms": ["aws", "amazon web service"]
},
{
"id": "rum",
"synonyms": ["RUM", "rum", "real user monitoring"]
},
{
"id": "permissions",
"synonyms": ["permissions", "Role Permissions"]
},
{
"id": "dbm",
"synonyms": ["dbm", "database monitoring"]
},
{
"id": "npm",
"synonyms": ["npm", "network performance monitoring"]
},
{
"id": "ksm",
"synonyms": ["ksm", "ksm core", "kubernetes state metrics"]
},
{
"id": "sast",
"synonyms": ["sast", "static analysis", "static application security testing"]
},
{
"id": "sca",
"synonyms": ["sca", "software composition analysis"]
},
{
"id": "otel",
"synonyms": ["otel", "opentelemetry"]
},
{
"id": "slo",
"synonyms": ["slo", "service level objective"]
},
{
"id": "asm",
"synonyms": ["asm", "application security management"]
},
{
"id": "rbac",
"synonyms": ["rbac", "role based access control"]
}
],
"presets": [
{
"name": "docs_alias_view",
"search_parameters": {
"query_by": "tags,title,section_header,content",
"query_by_weights": "4,3,2,2",
"group_by": "distinct_base_url",
"group_limit": 1,
"stopwords": "stopwords"
}
},
{
"name": "docs_alias_api_view",
"search_parameters": {
"sort_by": "rank:asc,_text_match:desc",
"query_by": "tags,content,title,section_header",
"group_by": "distinct_base_url",
"group_limit": 1,
"stopwords": "stopwords"
}
}
]
}
]
}