forked from orangejulius/elasticsearch-bash-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenable_slowlog.sh
27 lines (23 loc) · 980 Bytes
/
enable_slowlog.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
#!/bin/bash
set -euo pipefail
cluster_url="${cluster_url:-http://localhost:9200}"
echo "enabling slowlog for searching and indexing on $cluster_url"
curl -XPUT "$cluster_url/_cluster/settings" \
-H 'Content-Type: application/json' \
-d '{
"persistent": {
"index.search.slowlog.threshold.query.warn": "10s",
"index.search.slowlog.threshold.query.info": "5s",
"index.search.slowlog.threshold.query.info": "2s",
"index.search.slowlog.threshold.query.info": "500ms",
"index.search.slowlog.source": true,
"index.search.slowlog.threshold.fetch.warn": "10s",
"index.search.slowlog.threshold.fetch.info": "5s",
"index.search.slowlog.threshold.fetch.info": "2s",
"index.search.slowlog.threshold.fetch.info": "500ms",
"index.index.slowlog.threshold.index.warn": "10s",
"index.index.slowlog.threshold.index.info": "5s",
"index.index.slowlog.threshold.index.info": "2s",
"index.index.slowlog.threshold.index.info": "500ms"
}
}'