forked from ksobon/archi-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_elastic.js
63 lines (53 loc) · 1.06 KB
/
_elastic.js
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
PUT beat-2020-cad-1.0.0-000001/_settings
{
"index": {
"blocks": {
"read_only_allow_delete": "false"
}
}
}
PUT _all/_settings
{
"index": {
"blocks": {
"read_only_allow_delete": null
}
}
}
PUT _cluster/settings
{
"transient": {
"cluster": {
"routing": {
"allocation": {
"disk": {
"threshold_enabled": true
}
}
}
}
}
}
GET _nodes
GET _cluster/stats/nodes/tiebreaker-0000000039
GET _cluster/stats/nodes/instance-0000000040
GET _cluster/stats/nodes/instance-0000000039
GET _cluster/stats/nodes/instance-0000000038
GET _cluster/stats/nodes/instance-0000000037
GET _cluster/stats/nodes/instance-0000000036
GET _ilm/policy/metricbeat-max40Gb-noMaxAge
GET _cluster/health/metricbeat-2020-7.4.2
GET _cat/shards
GET /_nodes/instance-0000000040/_all
GET .kibana/_search
{
"_source": ["index-pattern.title"],
"query": {
"bool": {
"must": [
{"match": {"index-pattern.title": "*revit*"}},
{"match": {"type": "index-pattern"}}
]
}
}
}