feat(logs): make it so rule logs-setup isn't necessary
This commit is contained in:
parent
3ef811b334
commit
8dd0a74046
9 changed files with 49 additions and 11 deletions
19
logs/elasticsearch/bootstrap.sh
Executable file
19
logs/elasticsearch/bootstrap.sh
Executable file
|
|
@ -0,0 +1,19 @@
|
|||
#!/bin/sh
|
||||
|
||||
setup_ilm() {
|
||||
set -xe
|
||||
until curl -s -f http://localhost:9200 >/dev/null; do
|
||||
sleep 2;
|
||||
done;
|
||||
|
||||
curl -v -X PUT "localhost:9200/_ilm/policy/docker-logs-policy" \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '@/setup/docker-logs-policy.json'
|
||||
curl -v -X PUT "localhost:9200/_template/docker-logs-template" \
|
||||
-H "Content-Type: application/json" \
|
||||
-d '@/setup/docker-logs-template.json'
|
||||
exit 0
|
||||
}
|
||||
|
||||
setup_ilm &
|
||||
exec /usr/local/bin/docker-entrypoint.sh eswrapper >/dev/null
|
||||
Loading…
Add table
Add a link
Reference in a new issue