Import Kibana objects
POST/v1/kibana/import
Imports Kibana search, visualization, or dashboard objects. You can export objects using the /kibana/export endpoint. Please ensure to change the region in the URL to match your account's region.
Request
- application/json
Body
The version of Kibana used at the time of export. This must match the current version of Kibana that you're importing to.
To update an existing object with the same ID, true
. Otherwise, false
.
If override is true
, response message shows overwritten objects as updated
. If override is false
, no existing objects are updated, and response message shows these objects as ignored
.
Each JSON object in the array represents a discrete Kibana object.
Note: As a best practice, import only objects that were exported from Kibana.
Responses
- 200
successful operation
- application/json
- Schema
- Example (from schema)
Schema
Name of Kibana objects that were created
Names of the Kibana objects that were overwritten. Objects are shown here only if override
was true
in the import call.
Names of the Kibana objects that were not overwritten. Objects are shown here only if override
was false
in the import call.
Names of the Kibana objects that could not be created, updated, or ignored.
{
"created": [
"E-commerce-App-Transactions-overtime"
],
"updated": [
"HTTP-Response-over-time"
],
"ignored": [
"Transaction-overtime"
],
"failed": [
"Apache-Response-Over-Time"
]
}