From e60a0810f68b5d6da017d2a521ffac474fcd4816 Mon Sep 17 00:00:00 2001 From: DeDe Morton Date: Sun, 29 Jan 2017 09:52:09 -0800 Subject: [PATCH] Add SSL flags to import_dashboards CLI help (#3487) --- libbeat/docs/newdashboards.asciidoc | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/libbeat/docs/newdashboards.asciidoc b/libbeat/docs/newdashboards.asciidoc index b6a5594e72b2..352376694897 100644 --- a/libbeat/docs/newdashboards.asciidoc +++ b/libbeat/docs/newdashboards.asciidoc @@ -151,6 +151,13 @@ The Beat name. The Beat name is required when importing from a zip archive. When the Beat. When running the script from source, the default value is "", so you need to set this option in order to install the index pattern and the dashboards for a single Beat. Otherwise the script imports the index pattern and the dashboards for all Beats. +*`-cacert `*:: +The Certificate Authority to use for server verification. + +*`-cert `*:: +The certificate to use for SSL client authentication. The certificate must be in +PEM format. + *`-dir `*:: Local directory that contains the subdirectories: dashboard, visualization, search, and index-pattern. The default value is the current directory. @@ -164,9 +171,15 @@ Local zip archive with the dashboards. The archive can contain Kibana dashboards You should only use this option if you want to change the index pattern name that's used by default. For example, if the default is `metricbeat-*`, you can change it to `custombeat-*`. +*`-insecure`*:: +If specified, "insecure" SSL connections are allowed. + *`-k `*:: The Elasticsearch index pattern where Kibana saves its configuration. The default value is `.kibana`. +*`-key `*:: +The client certificate key. The key must be in PEM format. + *`-only-dashboards`*:: If specified, then only the dashboards, along with their visualizations and searches, are imported. The index pattern is not imported. By default, this is false.