创建

说明

object maintenance.create(object/array **maintenances**)

此方法允许创建新的维护模式。

参数

(object/array)要创建的维护模式。

另外见标准的维护属性,此方法接受如下参数。

属性类型描述
groupids
(必须)
array要执行维护模式的主机组IDs。
hostids
(必须)
array要执行维护模式的主机的IDs。
timeperiods
(必须)
array维护模式时间周期。
tagsarray问题标签
定义哪些问题必须被抑制。如果没有给出标记,所有活动维护主机问题都将被抑制。

每个维护模式至少一个主机或主机组被定义。

Return values 返回值

(object)maintenanceids属性中返回一个包含所有已被创建的维护模式的对象的ID。返回的IDs的排序与传递的维护模式的IDs顺序一致。

示例

创建一个维护模式

为主机组“2”以with data collection(持续收集数据)模式创建一个维护模式。该维护模式生效于22.01.2013 到 22.01.2014,每周六的18:00生效,并持续1个小时。

请求:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "maintenance.create",
  4. "params": {
  5. "name": "Sunday maintenance",
  6. "active_since": 1358844540,
  7. "active_till": 1390466940,
  8. "tags_evaltype": 0,
  9. "groupids": [
  10. "2"
  11. ],
  12. "timeperiods": [
  13. {
  14. "timeperiod_type": 3,
  15. "every": 1,
  16. "dayofweek": 64,
  17. "start_time": 64800,
  18. "period": 3600
  19. }
  20. ],
  21. "tags": [
  22. {
  23. "tag": "service",
  24. "operator": "0",
  25. "value": "mysqld",
  26. },
  27. {
  28. "tag": "error",
  29. "operator": "2",
  30. "value": ""
  31. }
  32. ]
  33. },
  34. "auth": "038e1d7b1735c6a5436ee9eae095879e",
  35. "id": 1
  36. }

响应:

  1. {
  2. "jsonrpc": "2.0",
  3. "result": {
  4. "maintenanceids": [
  5. "3"
  6. ]
  7. },
  8. "id": 1
  9. }

参见

来源

CMaintenance::create() in frontends/php/include/classes/api/services/CMaintenance.php.