# graphitem.get

### Description 描述

`integer/array graphitem.get(object parameters)`

The method allows to retrieve graph items according to the given
parameters. 此方法接受以下参数

### Parameters 参数

`(object)` Parameters defining the desired output. `(关联数组)`
定义所需输出的参数

The method supports the following parameters. 此方法支持以下参数：

|Parameter参数           T|pe类型                     Des|ription描述|
|---------------------------|--------------------------------|-------------|
|图形项目ID gitemids     str|ng/array 字符串型/数组   Return on|y graph items with the given IDs. 只返回指定ID的图形项目。|
|图形ID graphids         s|ring/array 字符串型/数组   Return|nly graph items that belong to the given graphs.只返回属于指定图形的图形项目。|
|监控项ID itemids        st|ing/array 字符串型/数组   Return o|ly graph items with the given item IDs.只返回指定监控项ID的图形项目|
|类型 type               i|teger整数型                Retu|n only graph items with the given type. 只返回指定类型的图形项目。<br><br>Refer to the [graph item object page](object#graph_item) for a list of supported graph item types.关于支持的图形项目类型，参见[图形项目对象](object#graph_item)的列表|
|选择图形 selectGraphs   que|y 请求                   Retur|the graph that the item belongs to as an array in the `graphs` property.返回`graphs`参数正确的图像|
|排序条件 sortfield      str|ng/array 字符串型/数组   Sort the|esult by the given properties. 按指定的参数排序<br><br>Possible values are: `gitemid`.可用值为： `gitemid`|
|countOutput|flag|These parameters being common for all `get` methods are described in detail in the [reference commentary](/manual/api/reference_commentary#common_get_method_parameters) page.这些参数对于所有get方法都是通用的，在附录1：参考中，查看详细描述。|
|editable|boolean|^|
|limit|integer|^|
|output|query|^|
|preservekeys|flag|^|
|sortorder|string/array|^|

### Return values 返回值

`(integer/array)` Returns either: 返回整数或数组：

-   an array of objects返回一个对象数组;
-   the count of retrieved objects, if the `countOutput` parameter has
    been used.如果`countOutput`被使用，返回检索对象的计数。

### Examples示例

#### Retrieving graph items from a graph 从图形中检索图形项目

Retrieve all graph items used in a graph with additional information
about the item and the
host.检索被图形使用的所有图形项目包含监控项和主机的额外信息

Request请求:

``` {.java}
{
    "jsonrpc": "2.0",
    "method": "graphitem.get",
    "params": {
        "output": "extend",
        "graphids": "387"
    },
    "auth": "038e1d7b1735c6a5436ee9eae095879e",
    "id": 1
}
```

Response相应:

``` {.java}
{
    "jsonrpc": "2.0",
    "result": [
        {
            "gitemid": "1242",
            "graphid": "387",
            "itemid": "22665",
            "drawtype": "1",
            "sortorder": "1",
            "color": "FF5555",
            "yaxisside": "0",
            "calc_fnc": "2",
            "type": "0",
            "key_": "system.cpu.util[,steal]",
            "hostid": "10001",
            "flags": "0",
            "host": "Template OS Linux"
        },
        {
            "gitemid": "1243",
            "graphid": "387",
            "itemid": "22668",
            "drawtype": "1",
            "sortorder": "2",
            "color": "55FF55",
            "yaxisside": "0",
            "calc_fnc": "2",
            "type": "0",
            "key_": "system.cpu.util[,softirq]",
            "hostid": "10001",
            "flags": "0",
            "host": "Template OS Linux"
        },
        {
            "gitemid": "1244",
            "graphid": "387",
            "itemid": "22671",
            "drawtype": "1",
            "sortorder": "3",
            "color": "009999",
            "yaxisside": "0",
            "calc_fnc": "2",
            "type": "0",
            "key_": "system.cpu.util[,interrupt]",
            "hostid": "10001",
            "flags": "0",
            "host": "Template OS Linux"
        }
    ],
    "id": 1
}
```

### See also 参见

-   [Graph图形](/manual/api/reference/graph/object#graph)

### Source来源

CGraphItem::get() in
*frontends/php/include/classes/api/services/CGraphItem.php*.
