Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SSL flags to import_dashboards CLI help #3487

Merged
merged 1 commit into from
Jan 29, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions libbeat/docs/newdashboards.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -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 <certificate_authority>`*::
The Certificate Authority to use for server verification.

*`-cert <client_certificate>`*::
The certificate to use for SSL client authentication. The certificate must be in
PEM format.

*`-dir <local_dir>`*::
Local directory that contains the subdirectories: dashboard, visualization, search, and index-pattern. The default value is the current directory.

Expand All @@ -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 <kibana_index>`*::
The Elasticsearch index pattern where Kibana saves its configuration. The default value is `.kibana`.

*`-key <client_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.
Expand Down