Exporting New and Modified Beat Dashboardsedit

To export all the dashboards for any Elastic Beat or any community Beat, including any new or modified dashboards and all dependencies such as visualizations, searches, you can use the Go script export_dashboards.go from dev-tools. See the dev-tools readme for more info.

Alternatively, if the scripts above are not available, you can use your Beat binary to export Kibana 6.0 dashboards or later.

Exporting from Kibana 6.0 to 7.14edit

The dev-tools/cmd/export_dashboards.go script helps you export your customized Kibana dashboards until the v7.14.x release. You might need to export a single dashboard or all the dashboards available for a module or Beat.

It is also possible to use a Beat binary to export.

Exporting from Kibana 7.15 or neweredit

From 7.15, your Beats version must be the same as your Kibana version to make sure the export API required is available.

Migrate legacy dashboards made with Kibana 7.14 or olderedit

After you updated your Kibana instance to at least 7.15, you have to export your dashboards again with either export_dashboards.go tool or with your Beat.

Export a single Kibana dashboardedit

To export a single dashboard for a module you can use the following command inside a Beat with modules:

MODULE=redis ID=AV4REOpp5NkDleZmzKkE mage exportDashboard
./filebeat export dashboard -id 7fea2930-478e-11e7-b1f0-cb29bac6bf8b -folder module/redis

This generates an appropriate folder under module/redis for the dashboard, separating assets into dashboards, searches, vizualizations, etc. Each exported file is a JSON and their names are the IDs of the assets.

The dashboard ID is available in the dashboard URL. For example, in case the dashboard URL is app/kibana#/dashboard/AV4REOpp5NkDleZmzKkE?_g=()&_a=(description:'Overview%2..., the dashboard ID is AV4REOpp5NkDleZmzKkE.

Export all module/Beat dashboardsedit

Each module should contain a module.yml file with a list of all the dashboards available for the module. For the Beats that don’t have support for modules (e.g. Packetbeat), there is a dashboards.yml file that defines all the Packetbeat dashboards.

Below, it’s an example of the module.yml file for the system module in Metricbeat:

dashboards:
- id: Metricbeat-system-overview
  file: Metricbeat-system-overview.ndjson

- id: 79ffd6e0-faa0-11e6-947f-177f697178b8
  file: Metricbeat-host-overview.ndjson

- id: CPU-slash-Memory-per-container
  file: Metricbeat-containers-overview.ndjson

Each dashboard is defined by an id and the name of ndjson file where the dashboard is saved locally.

By passing the yml file to the export_dashboards.go script or to the Beat, you can export all the dashboards defined:

go run dev-tools/cmd/dashboards/export_dashboards.go -yml filebeat/module/system/module.yml -folder dashboards
./filebeat export dashboard -yml filebeat/module/system/module.yml

Export dashboards from a Kibana Spaceedit

If you are using the Kibana Spaces feature and want to export dashboards from a specific Space, pass the Space ID to the export_dashboards.go script:

go run dev-tools/cmd/dashboards/export_dashboards.go -space-id my-space [other-options]

In case of running export dashboard of a Beat, you need to set the Space ID in setup.kibana.space.id.

Exporting Kibana 5.x dashboardsedit

To export only some Kibana dashboards for an Elastic Beat or community Beat, you can simply pass a regular expression to the export_dashboards.py script to match the selected Kibana dashboards.

Before running the export_dashboards.py script for the first time, you need to create an environment that contains all the required Python packages.

make python-env

For example, to export all Kibana dashboards that start with the Packetbeat name:

python ../dev-tools/cmd/dashboards/export_dashboards.py --regex Packetbeat*

To see all the available options, read the descriptions below or run:

python ../dev-tools/cmd/dashboards/export_dashboards.py -h
--url <elasticsearch_url>
The Elasticsearch URL. The default value is http://localhost:9200.
--regex <regular_expression>
Regular expression to match all the Kibana dashboards to be exported. This argument is required.
--kibana <kibana_index>
The Elasticsearch index pattern where Kibana saves its configuration. The default value is .kibana.
--dir <output_dir>
The output directory where the dashboards and all dependencies will be saved. The default value is output.

The output directory has the following structure:

output/
    index-pattern/
    dashboard/
    visualization/
    search/