EDB Postgres Enterprise Manager REST APIs v8.0: Import Custom Dashboards v10.2
post__dashboard_custom_import_
Code samples
# You can also use wget curl -X POST https://PEM-SERVER-IP/api/v8/dashboard/custom/import/ \ -H 'Content-Type: application/json' \ -H 'Accept: application/json' \ -H 'X-Auth-Token: string'
import requests headers = { 'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': 'string' } r = requests.post('https://PEM-SERVER-IP/api/v8/dashboard/custom/import/', headers = headers) print(r.json())
const inputBody = '{ "version": 1, "skip_overwrite": true, "skip_overwrite_probe": true, "skip_overwrite_chart": true, "dashboards": [ { "name": "string", "descp": "string", "reference_id": "string", "font": "string", "font_size": 0, "level": 0, "is_ops": true, "show_title": true, "design_layout": [ {} ], "c_charts": [ {} ], "shared": [ 0 ], "shared_all": true } ] }'; const headers = { 'Content-Type':'application/json', 'Accept':'application/json', 'X-Auth-Token':'string' }; fetch('https://PEM-SERVER-IP/api/v8/dashboard/custom/import/', { method: 'POST', body: inputBody, headers: headers }) .then(function(res) { return res.json(); }).then(function(body) { console.log(body); });
POST /dashboard/custom/import/
Imports custom alert templates using exported dashboards.
Body parameter
{ "version": 1, "skip_overwrite": true, "skip_overwrite_probe": true, "skip_overwrite_chart": true, "dashboards": [ { "name": "string", "descp": "string", "reference_id": "string", "font": "string", "font_size": 0, "level": 0, "is_ops": true, "show_title": true, "design_layout": [ {} ], "c_charts": [ {} ], "shared": [ 0 ], "shared_all": true } ] }
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
X-Auth-Token | header | string | true | Token of authorization |
body | body | CustomDashboardImportPostData | true | none |
Example responses
200 Response
[ { "name": "string", "status": "string", "msg": "string" } ]
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Status 200 | Inline |
Response Schema
Status Code 200
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
» name | string | true | none | none |
» status | string | true | none | none |
» msg | string | true | none | none |
Info
This operation does not require authentication
- On this page
- post__dashboard_custom_import_