aboutsummaryrefslogtreecommitdiffstats
path: root/extra
diff options
context:
space:
mode:
authorSébastien Determe <sebastien.determe@intl.att.com>2018-10-31 17:43:21 +0000
committerGerrit Code Review <gerrit@onap.org>2018-10-31 17:43:21 +0000
commit46da03452820f5467c9ae77198e95a94cbd3b783 (patch)
treeb2e2d53583b6835c578b422313ffe3a13a5e1a03 /extra
parent626d60b91ebe94bc9de2dfae45b211a7c9bd7687 (diff)
parent4dc3f65ec5dab86a167d6cf2dac3a5039e45ed33 (diff)
Merge "add missing visual"
Diffstat (limited to 'extra')
-rw-r--r--extra/docker/elk/README.md9
1 files changed, 7 insertions, 2 deletions
diff --git a/extra/docker/elk/README.md b/extra/docker/elk/README.md
index f74c4e0e..b2b6fe36 100644
--- a/extra/docker/elk/README.md
+++ b/extra/docker/elk/README.md
@@ -19,10 +19,12 @@ Backup/restore
--------------
backup.py and restore.py scripts are available inside the kibana docker image for saving and restoring the configuration.
+the default configuration is located in the kibana docker image under the directory "/saved-objects/default/"
### backup.py
```
-docker-compose exec kibana backup.py -C /saved-objects/
+firts create the directory "/saved-objects/mybackup" if it doesn't exist
+docker-compose exec kibana backup.py -C /saved-objects/mybackup
```
```
usage: backup.py [-h] [-v] [-C CONFIGURATION_PATH] [-f] [-H KIBANA_HOST]
@@ -45,7 +47,10 @@ optional arguments:
### restore.py
```
-docker-compose exec kibana restore.py -C /saved-objects/ -f
+to restore the configuration, you previously backed up, use the command below:
+docker-compose exec kibana restore.py -C /saved-objects/mybackup -f
+to restore the default confgiuration use the command below:
+docker-compose exec kibana restore.py -C /saved-objects/default -f
```
```
usage: restore.py [-h] [-v] [-C CONFIGURATION_PATH] [-H KIBANA_HOST] [-f]