-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into typescript-3.7
- Loading branch information
Showing
5,346 changed files
with
484,686 additions
and
114,855 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"upstream": "elastic/kibana", | ||
"branches": [{ "name": "7.x", "checked": true }, "7.4", "7.3", "7.2", "7.1", "7.0", "6.8", "6.7", "6.6", "6.5", "6.4", "6.3", "6.2", "6.1", "6.0", "5.6"], | ||
"branches": [{ "name": "7.x", "checked": true }, "7.5", "7.4", "7.3", "7.2", "7.1", "7.0", "6.8", "6.7", "6.6", "6.5", "6.4", "6.3", "6.2", "6.1", "6.0", "5.6"], | ||
"labels": ["backport"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[[dashboard-api]] | ||
== Import and export dashboard APIs | ||
|
||
Import and export dashboards with the corresponding saved objects, such as visualizations, saved | ||
searches, and index patterns. | ||
|
||
WARNING: Do not write documents directly to the `.kibana` index. When you write directly | ||
to the `.kibana` index, the data becomes corrupted and permanently breaks future {kib} versions. | ||
|
||
The following import and export dashboard APIs are available: | ||
|
||
* <<dashboard-import-api, Import dashboard API>> to import dashboards and corresponding saved objects | ||
|
||
* <<dashboard-api-export, Export dashboard API>> to export dashboards and corresponding saved objects | ||
|
||
include::dashboard/import-dashboard.asciidoc[] | ||
include::dashboard/export-dashboard.asciidoc[] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
[[dashboard-api-export]] | ||
=== Export dashboard API | ||
++++ | ||
<titleabbrev>Export dashboard</titleabbrev> | ||
++++ | ||
|
||
experimental[] Export dashboards and corresponding saved objects. | ||
|
||
[[dashboard-api-export-request]] | ||
==== Request | ||
|
||
`GET /api/kibana/dashboards/export` | ||
|
||
[[dashboard-api-export-params]] | ||
==== Query parameters | ||
|
||
`dashboard`:: | ||
(Required, array|string) The IDs of the dashboards that you want to export. | ||
|
||
[[dashboard-api-export-response-body]] | ||
==== Response body | ||
|
||
`objects`:: | ||
(array) A top level property that includes the saved objects. The order of the objects is not guaranteed. Use the exact response body as the request body for the corresponding <<dashboard-import-api, Import dashboard API>>. | ||
|
||
[[dashboard-api-export-codes]] | ||
==== Response code | ||
|
||
`200`:: | ||
Indicates a successful call. | ||
|
||
[float] | ||
[[dashboard-api-export-example]] | ||
==== Example | ||
|
||
[source,js] | ||
-------------------------------------------------- | ||
GET api/kibana/dashboards/export?dashboard=942dcef0-b2cd-11e8-ad8e-85441f0c2e5c <1> | ||
-------------------------------------------------- | ||
// KIBANA | ||
|
||
<1> The dashboard ID is `942dcef0-b2cd-11e8-ad8e-85441f0c2e5c`. |
Oops, something went wrong.