From 4dc3f65ec5dab86a167d6cf2dac3a5039e45ed33 Mon Sep 17 00:00:00 2001 From: osgn422w Date: Wed, 31 Oct 2018 13:39:02 +0100 Subject: add missing visual add missing visualization for original dashboard and update readme Issue-ID: CLAMP-240 Change-Id: I4425219318bb83c2906e5b3e85f4c1ad484a1fad Signed-off-by: osgn422w --- extra/docker/elk/README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'extra/docker') 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] -- cgit 1.2.3-korg