integer/array graphitem.get(object parameters)
该方法允许根据给定的参数来检索图形监控项。
这种方法对任何类型的用户都适用。调用该方法的权限可以在用户角色设置中撤销。前往用户角色以获取更多信息。
(object) 定义所需输出的参数。
该方法支持以下参数。
| 参数 | 类型 | 描述 |
|---|---|---|
| graphids | ID/array | 仅返回指定图形的图形监控项。 |
| itemids | ID/array | 仅返回指定监控项ID的图形监控项。 |
| type | integer | 仅返回指定类型的图形监控项。 请参考图形监控项对象页,了解支持的图形监控项类型列表。 |
| selectGraphs | query | 返回一个图形属性,其中包含该监控项所属的图形的数组。 |
| sortfield | string/array | 根据指定的属性对结果进行排序 可能的值: gitemid。 |
| countOutput | boolean | 这些参数是所有get方法的共同参数,在参考说明页面中有详细描述。 |
| editable | boolean | |
| limit | integer | |
| output | query | |
| preservekeys | boolean | |
| sortorder | string/array |
返回值是 (integer/array) 其中之一:
countOutput参数,则为检索到的对象的数量。检索图形中使用的所有图形监控项,以及相关的监控项和主机的额外信息。
请求:
{
"jsonrpc": "2.0",
"method": "graphitem.get",
"params": {
"output": "extend",
"graphids": "387"
},
"id": 1
}响应:
{
"jsonrpc": "2.0",
"result": [
{
"gitemid": "1242",
"graphid": "387",
"itemid": "22665",
"drawtype": "1",
"sortorder": "1",
"color": "FF5555",
"yaxisside": "0",
"calc_fnc": "2",
"type": "0"
},
{
"gitemid": "1243",
"graphid": "387",
"itemid": "22668",
"drawtype": "1",
"sortorder": "2",
"color": "55FF55",
"yaxisside": "0",
"calc_fnc": "2",
"type": "0"
},
{
"gitemid": "1244",
"graphid": "387",
"itemid": "22671",
"drawtype": "1",
"sortorder": "3",
"color": "009999",
"yaxisside": "0",
"calc_fnc": "2",
"type": "0"
}
],
"id": 1
}CGraphItem::get() in ui/include/classes/api/services/CGraphItem.php.