configuration_import
Import configuration data into Zabbix using specified format (JSON or XML) and rules. This tool provides a structured approach to integrate and manage monitoring setups with clear import results.
Instructions
Import configuration to Zabbix.
Args:
format: Import format (json, xml)
source: Configuration data to import
rules: Import rules
Returns:
str: JSON formatted import result
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | Yes | ||
rules | Yes | ||
source | Yes |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"title": "Format",
"type": "string"
},
"rules": {
"additionalProperties": true,
"title": "Rules",
"type": "object"
},
"source": {
"title": "Source",
"type": "string"
}
},
"required": [
"format",
"source",
"rules"
],
"type": "object"
}