hostinterface.get

描述

integer/array hostinterface.get(object parameters)

该方法允许根据给定的参数检索主机接口。

此方法适用于任何类型的用户。调用该方法的权限可以在用户角色设置中撤销。更多信息请参见User roles

参数

(object) 参数定义了期望的输出。

该方法支持以下参数。

参数 数据类型 描述
hostids ID/array 仅返回给定 主机 使用的 主机 接口。
interfaceids ID/array 仅返回具有指定 ID 的 主机 接口。
itemids ID/array 仅返回给定 监控项 使用的 主机 接口。
triggerids ID/array 仅返回给定触发器中 监控项 使用的 主机 接口。
selectItems query 返回一个包含使用该接口的 监控项 的 items 属性。

支持 count
selectHosts query 返回一个包含使用该接口的 主机 的 array 的 hosts 属性。
limitSelects integer 限制子查询返回的记录数量。

适用于以下子查询:
selectItems
sortfield string/array 按照指定属性对结果进行排序。

可能的值:interfaceiddnsip
countOutput boolean 这些参数在 通用get方法参数 中有描述。
editable boolean
excludeSearch boolean
filter object
limit integer
output query
preservekeys boolean
search object
searchByAny boolean
searchWildcardsEnabled boolean
sortorder string/array
startSearch boolean

返回值

(integer/array) 返回以下之一:

  • array 的 objects;
  • 如果使用了 countOutput 参数,则为检索到的 objects 的数量。

示例

检索主机接口

检索有关 主机 "30057" 使用的所有接口数据。

执行请求:

{
           "jsonrpc": "2.0",
           "method": "hostinterface.get",
           "params": {
               "output": "extend",
               "hostids": "30057"
           },
           "id": 1
       }

响应:

{
           "jsonrpc": "2.0",
           "result": [
               {
                   "interfaceid": "50039",
                   "hostid": "30057",
                   "main": "1",
                   "type": "1",
                   "useip": "0",
                   "ip": "",
                   "dns": "localhost",
                   "port": "10050",
                   "available": "0",
                   "error": "",
                   "errors_from": "0",
                   "disable_until": "0",
                   "details": []
               },
               {
                   "interfaceid": "55082",
                   "hostid": "30057",
                   "main": "1",
                   "type": "2",
                   "useip": "1",
                   "ip": "127.0.0.1",
                   "dns": "",
                   "port": "161",
                   "available": "0",
                   "error": "",
                   "errors_from": "0",
                   "disable_until": "0",
                   "details": {
                       "version": "2",
                       "bulk": "0",
                       "community": "{$SNMP_COMMUNITY}",
                       "max_repetitions": "10"
                   }
               }
           ],
           "id": 1
       }

另请参阅

来源

CHostInterface::get() 在 ui/include/classes/api/services/CHostInterface.php 中。