integer/array drule.get(object parameters)
此方法允许根据给定参数检索发现规则。
此方法对任何类型的用户可用。可以在用户角色设置中撤销调用该方法的权限。参见用户角色 了解更多信息。
(object)
定义需要输出的参数。
此方法支持以下参数。
参数 | 类型 | 描述 |
---|---|---|
dhostids | ID/array | 仅返回创建给定已发现主机的发现规则。 |
druleids | ID/array | 仅返回具有给定 ID 的发现规则。 |
dserviceids | ID/array | 仅返回创建给定已发现服务的发现规则。 |
selectDChecks | query | 返回 dchecks 属性,其中包含发现规则使用的发现检查。 支持 count 。 |
selectDHosts | query | 返回 dhosts 属性,其中包含由发现规则创建的已发现主机。 支持 count 。 |
limitSelects | integer | 限制子选择返回的记录数。 适用于以下子选择: selectDChecks - 结果将按照 dcheckid 排序;selectDHosts - 结果将按照 dhostsid 排序。 |
sortfield | string/array | 根据给定的属性对结果进行排序。 可能值: druleid 和 name 。 |
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)
返回其中一种结果:
countOutput
,则返回检索到的对象的数量。获取所有配置的发现规则及其使用的发现检查。
请求:
{
"jsonrpc": "2.0",
"method": "drule.get",
"params": {
"output": "extend",
"selectDChecks": "extend"
},
"id": 1
}
响应:
{
"jsonrpc": "2.0",
"result": [
{
"druleid": "2",
"proxyid": "0",
"name": "Local network",
"iprange": "192.168.3.1-255",
"delay": "5s",
"status": "0",
"concurrency_max": "0",
"error": "",
"dchecks": [
{
"dcheckid": "7",
"druleid": "2",
"type": "3",
"key_": "",
"snmp_community": "",
"ports": "21",
"snmpv3_securityname": "",
"snmpv3_securitylevel": "0",
"snmpv3_authpassphrase": "",
"snmpv3_privpassphrase": "",
"uniq": "0",
"snmpv3_authprotocol": "0",
"snmpv3_privprotocol": "0",
"snmpv3_contextname": "",
"host_source": "1",
"name_source": "0",
"allow_redirect": "0"
},
{
"dcheckid": "8",
"druleid": "2",
"type": "4",
"key_": "",
"snmp_community": "",
"ports": "80",
"snmpv3_securityname": "",
"snmpv3_securitylevel": "0",
"snmpv3_authpassphrase": "",
"snmpv3_privpassphrase": "",
"uniq": "0",
"snmpv3_authprotocol": "0",
"snmpv3_privprotocol": "0",
"snmpv3_contextname": "",
"host_source": "1",
"name_source": "0",
"allow_redirect": "0"
}
]
},
{
"druleid": "6",
"proxyid": "0",
"name": "Zabbix agent discovery",
"iprange": "192.168.1.1-255",
"delay": "1h",
"status": "0",
"concurrency_max": "10",
"error": "",
"dchecks": [
{
"dcheckid": "10",
"druleid": "6",
"type": "9",
"key_": "system.uname",
"snmp_community": "",
"ports": "10050",
"snmpv3_securityname": "",
"snmpv3_securitylevel": "0",
"snmpv3_authpassphrase": "",
"snmpv3_privpassphrase": "",
"uniq": "0",
"snmpv3_authprotocol": "0",
"snmpv3_privprotocol": "0",
"snmpv3_contextname": "",
"host_source": "2",
"name_source": "3",
"allow_redirect": "0"
}
]
}
],
"id": 1
}
ui/include/classes/api/services/CDRule.php 中的 CDRule::get()。