创建

描述

object graphprototype.create(object/array graphPrototypes)

这种方法允许创建新的图表原型。

这个方法只可用于 管理员超级管理员 的用户类型。调用该方法的权限可以在用户角色设置中被撤销。 前往用户角色以了解更多信息。

参数

(object/array) 要创建的图形原型。

除了标准图形属性之外,该方法还接受以下参数。

参数类型描述
gitemsarray要为图形原型创建图形监控项。图形监控项可以同时引用监控项和监控项原型,但至少要有一个监控项原型。

参数行为
- 需要

返回值

(object) 返回一个对象,包含在 graphids 属性下创建的图形原型的ID。返回的ID的顺序与传递的图形原型的顺序相匹配。

示例

创建图形原型

创建具有两个监控项的图形原型。

请求:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "graphprototype.create",
  4. "params": {
  5. "name": "Disk space usage {#FSNAME}",
  6. "width": 900,
  7. "height": 200,
  8. "gitems": [
  9. {
  10. "itemid": "22828",
  11. "color": "00AA00"
  12. },
  13. {
  14. "itemid": "22829",
  15. "color": "3333FF"
  16. }
  17. ]
  18. },
  19. "id": 1
  20. }

响应:

  1. {
  2. "jsonrpc": "2.0",
  3. "result": {
  4. "graphids": [
  5. "652"
  6. ]
  7. },
  8. "id": 1
  9. }

另见

源码

CGraphPrototype::create() in ui/include/classes/api/services/CGraphPrototype.php.