获取对象 API
编辑获取对象 API编辑
已在 8.7.0 中弃用。
将在未来版本中移除
通过 ID 检索单个 Kibana 已保存对象。
有关最新的 API 详细信息,请参阅开放 API 规范。
请求编辑
GET <kibana 主机>:<端口>/api/saved_objects/<类型>/<ID>
GET <kibana 主机>:<端口>/s/<空间 ID>/api/saved_objects/<类型>/<ID>
路径参数编辑
-
space_id
- (可选,字符串)空间的标识符。如果未在 URL 中提供
space_id
,则使用默认空间。 -
类型
- (必填,字符串)有效选项包括
visualization
、dashboard
、search
、index-pattern
、config
。 -
ID
- (必填,字符串)要检索的对象的 ID。
响应代码编辑
-
200
- 表示调用成功。
示例编辑
检索 ID 为 my-pattern
的数据视图对象
$ curl -X GET api/index_patterns/index-pattern/my-pattern
API 返回以下内容
{ "id": "my-pattern", "type": "index-pattern", "version": 1, "attributes": { "title": "my-pattern-*" } }
通过 ID 检索 testspace
中的仪表板对象
$ curl -X GET s/testspace/api/saved_objects/dashboard/7adfa750-4c81-11e8-b3d7-01146121b73d
API 返回以下内容
{ "id": "7adfa750-4c81-11e8-b3d7-01146121b73d", "type": "dashboard", "updated_at": "2019-07-23T00:11:07.059Z", "version": "WzQ0LDFd", "attributes": { "title": "[Flights] Global Flight Dashboard", "hits": 0, "description": "Analyze mock flight data for ES-Air, Logstash Airways, Kibana Airlines and JetBeats", "panelsJSON": "[ . . . ]", "optionsJSON": "{\"hidePanelTitles\":false,\"useMargins\":true}", "version": 1, "timeRestore": true, "timeTo": "now", "timeFrom": "now-24h", "refreshInterval": { "display": "15 minutes", "pause": false, "section": 2, "value": 900000 }, "kibanaSavedObjectMeta": { "searchSourceJSON": "{\"query\":{\"language\":\"kuery\",\"query\":\"\"},\"filter\":[],\"highlightAll\":true,\"version\":true}" } }, "references": [ { "name": "panel_0", "type": "visualization", "id": "aeb212e0-4c84-11e8-b3d7-01146121b73d" }, . . . { "name": "panel_18", "type": "visualization", "id": "ed78a660-53a0-11e8-acbd-0be0ad9d822b" } ], "migrationVersion": { "dashboard": "7.0.0" } }