host_delete
Remove hosts from Zabbix monitoring by specifying host IDs. Returns a JSON-formatted result confirming successful deletions for efficient system management.
Instructions
Delete hosts from Zabbix.
Args:
hostids: List of host IDs to delete
Returns:
str: JSON formatted deletion result
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hostids | Yes |
Input Schema (JSON Schema)
{
"properties": {
"hostids": {
"items": {
"type": "string"
},
"title": "Hostids",
"type": "array"
}
},
"required": [
"hostids"
],
"type": "object"
}