获取

描述

integer/array httptest.get(object parameters)

此方法允许根据给出的参数检索Web场景。

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

参数

(object) 定义所需输出的参数。

该方法支持以下参数。

参数类型说明
groupidsID/array仅返回属于给定主机组的 Web 场景。
hostidsID/array仅返回属于给定主机的 Web 场景。
httptestidsID/array仅返回具有给定 ID 的 Web 场景。
inheritedboolean如果设置为 true,则仅返回从模板继承的 Web 场景。
monitoredboolean如果设置为 true,则仅返回属于受监控主机的已启用 Web 场景。
templatedboolean如果设置为 true,则仅返回属于模板的 Web 场景。
templateidsID/array仅返回属于给定模板的 Web 场景。
expandNameflag在 Web 场景名称中展开宏。
expandStepNameflag在场景步骤名称中展开宏。
evaltypeinteger标签搜索规则。

可能的值:
0 - (默认)与/或;
2 - 或。
tagsarray仅返回具有给定标签的 Web 场景。根据运算符值,按标签精确匹配并按标签值区分大小写或不区分大小写搜索。
格式:[{“tag”: “<tag>”, “value”: “<value>”, “operator”: “<operator>”}, …]
空数组返回所有 Web 场景。

可能的操作符类型:
0 - (默认)类似;
1 - 相等;
2 - 不像;
3 - 不等于
4 - 存在;
5 - 不存在。
selectHostsqueryhosts 属性中以数组形式返回 Web 场景所属的主机。
selectStepsquerysteps 属性中返回 Web 场景步骤。

支持 count
selectTagsquerytags 属性中返回 Web 场景标签。
sortfieldstring/array根据给定的属性对结果进行排序。

可能的值:httptestidname
countOutputboolean这些参数是所有 get 方法所共有的,在 参考注释 中有详细描述。
editableboolean
excludeSearchboolean
filterobject
limitinteger
outputquery
preservekeysboolean
searchobject
searchByAnyboolean
searchWildcardsEnabledboolean
sortorderstring/array
startSearchboolean

返回值

(integer/array) 返回以下任一值:

  • 对象数组;
  • 如果已使用 countOutput 参数,则返回检索到的对象的数量。

示例

检索一个Web场景

检索关于Web场景“4”的所有数据。

请求:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "httptest.get",
  4. "params": {
  5. "output": "extend",
  6. "selectSteps": "extend",
  7. "httptestids": "9"
  8. },
  9. "auth": "038e1d7b1735c6a5436ee9eae095879e",
  10. "id": 1
  11. }

响应:

  1. {
  2. "jsonrpc": "2.0",
  3. "result": [
  4. {
  5. "httptestid": "9",
  6. "name": "Homepage check",
  7. "nextcheck": "0",
  8. "delay": "1m",
  9. "status": "0",
  10. "variables": [],
  11. "agent": "Zabbix",
  12. "authentication": "0",
  13. "http_user": "",
  14. "http_password": "",
  15. "hostid": "10084",
  16. "templateid": "0",
  17. "http_proxy": "",
  18. "retries": "1",
  19. "ssl_cert_file": "",
  20. "ssl_key_file": "",
  21. "ssl_key_password": "",
  22. "verify_peer": "0",
  23. "verify_host": "0",
  24. "headers": [],
  25. "steps": [
  26. {
  27. "httpstepid": "36",
  28. "httptestid": "9",
  29. "name": "Homepage",
  30. "no": "1",
  31. "url": "http://example.com",
  32. "timeout": "15s",
  33. "posts": "",
  34. "required": "",
  35. "status_codes": "200",
  36. "variables": [
  37. {
  38. "name":"{var}",
  39. "value":"12"
  40. }
  41. ],
  42. "follow_redirects": "1",
  43. "retrieve_mode": "0",
  44. "headers": [],
  45. "query_fields": []
  46. },
  47. {
  48. "httpstepid": "37",
  49. "httptestid": "9",
  50. "name": "Homepage / About",
  51. "no": "2",
  52. "url": "http://example.com/about",
  53. "timeout": "15s",
  54. "posts": "",
  55. "required": "",
  56. "status_codes": "200",
  57. "variables": [],
  58. "follow_redirects": "1",
  59. "retrieve_mode": "0",
  60. "headers": [],
  61. "query_fields": []
  62. }
  63. ]
  64. }
  65. ],
  66. "id": 1
  67. }

另请参阅

源码

ui/include/classes/api/services/CHttpTest.php 中的 CHttpTest::get()。