创建

描述

object graph.create(object/array graphs)

此方法允许创建新的图表。

此方法只有 Admin(管理员)Super admin(超级管理员)用户可用。可以在用户角色设置中撤销调用该方法的权限。更多信息请查看用户角色

参数

(object/array) 要创建的图表。

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

参数类型描述
gitems
(必选)
array要为图表创建的图表监控项

返回值

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

示例

创建一个图表

创建一个具有两个监控项的图表。

请求:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "graph.create",
  4. "params": {
  5. "name": "MySQL bandwidth",
  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. "auth": "038e1d7b1735c6a5436ee9eae095879e",
  20. "id": 1
  21. }

响应:

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

另见

来源

ui/include/classes/api/services/CGraph.php中的CGraph::create()。