object triggerprototype.create(object/array triggerPrototypes)
This method allows to create new trigger prototypes.
This method is only available to Admin and Super admin user types. Permissions to call the method can be revoked in user role settings. See User roles for more information.
(object/array)
Trigger prototypes to create.
Additionally to the standard trigger prototype properties the method accepts the following parameters.
Parameter | Type | Description |
---|---|---|
dependencies | array | Triggers and trigger prototypes that the trigger prototype is dependent on. The triggers must have only the triggerid property defined. |
tags | array | Trigger prototype tags. |
The trigger expression has to be given in its expanded form and must contain at least one item prototype.
(object)
Returns an object containing the IDs of the created trigger prototypes under the triggerids
property. The order of the returned IDs matches the order of the passed trigger prototypes.
Create a trigger prototype to detect when a file system has less than 20% free disk space.
{
"jsonrpc": "2.0",
"method": "triggerprototype.create",
"params": {
"description": "Free disk space is less than 20% on volume {#FSNAME}",
"expression": "last(/Zabbix server/vfs.fs.size[{#FSNAME},pfree])<20",
"tags": [
{
"tag": "volume",
"value": "{#FSNAME}"
},
{
"tag": "type",
"value": "{#FSTYPE}"
}
]
},
"id": 1
}
Response:
CTriggerPrototype::create() in ui/include/classes/api/services/CTriggerPrototype.php.