创建维护模式
说明
object maintenance.create(object/array maintenances)
该方法允许创建维护模式。
此方法仅适用于管理员和超级管理员用户类型。可以在用户角色设置中撤销调用该方法的权限。了解更多信息请参见用户角色。
参数
(object/array)
要创建的维护模式。
另外见标准维护属性,此方法接受如下参数。
参数 | 类型 | 描述 |
---|---|---|
groupids (必需) | array | 要执行维护模式的主机组IDs。 |
hostids (必需) | array | 要执行维护模式的主机的IDs。 |
timeperiods (必需) | array | 维护模式的时间周期. |
tags | object/array | 问题标签. 定义必须抑制的问题 如果没有给出标签,所有活动维护主机问题都将被抑制。 |
返回值
(object)
在maintenanceids
属性中返回一个包含所有已被创建的维护模式的对象的ID。返回的IDs的排序与传递的维护模式的IDs顺序一致。
案例
创建维护模式
使用 ID 为“2”的主机组和问题标签 service:mysqld 和 error 的数据收集创建维护模式。它必须从 22.01.2013 到 22.01.2014 有效,每周日 18:00 生效,持续一小时。
请求:
{
· "jsonrpc": "2.0",
· "method": "maintenance.create",
· "params": {
· "name": "Sunday maintenance",
· "active_since": 1358844540,
· "active_till": 1390466940,
· "tags_evaltype": 0,
· "groups": [
· {"groupid": "2"}
· ],
· "timeperiods": [
· {
· "period": 3600,
· "timeperiod_type": 3,
· "start_time": 64800,
· "every": 1,
· "dayofweek": 64
· }
· ],
· "tags": [
· {
· "tag": "service",
· "operator": "0",
· "value": "mysqld"
· },
· {
· "tag": "error",
· "operator": "2",
· "value": ""
· }
· ]
· },
· "auth": "038e1d7b1735c6a5436ee9eae095879e",
· "id": 1
}
返回:
{
· "jsonrpc": "2.0",
· "result": {
· "maintenanceids": [
· "3"
· ]
· },
· "id": 1
}
另见
来源
CMaintenance::create() in ui/include/classes/api/services/CMaintenance.php.