diff options
author | osgn422w <gervais-martial.ngueko@intl.att.com> | 2018-10-31 13:39:02 +0100 |
---|---|---|
committer | osgn422w <gervais-martial.ngueko@intl.att.com> | 2018-10-31 15:10:59 +0100 |
commit | 4dc3f65ec5dab86a167d6cf2dac3a5039e45ed33 (patch) | |
tree | 27f65eedf14c6cf15d47ce7a7be7e46116caeca6 /extra | |
parent | 840f2aee9e4d5cebd37efbe5426378718bae5684 (diff) |
add missing visual
add missing visualization for original dashboard and update readme
Issue-ID: CLAMP-240
Change-Id: I4425219318bb83c2906e5b3e85f4c1ad484a1fad
Signed-off-by: osgn422w <gervais-martial.ngueko@intl.att.com>
Diffstat (limited to 'extra')
-rw-r--r-- | extra/docker/elk/README.md | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/extra/docker/elk/README.md b/extra/docker/elk/README.md index f74c4e0e9..b2b6fe36c 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] |