trend_get
Extract Zabbix trend data for specified item IDs within a defined time range. Provides JSON-formatted results for monitoring and analysis.
Instructions
Get trend data from Zabbix.
Args:
itemids: List of item IDs to get trends for
time_from: Start time (Unix timestamp)
time_till: End time (Unix timestamp)
limit: Maximum number of results
Returns:
str: JSON formatted trend data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
itemids | Yes | ||
limit | No | ||
time_from | No | ||
time_till | No |
Input Schema (JSON Schema)
{
"properties": {
"itemids": {
"items": {
"type": "string"
},
"title": "Itemids",
"type": "array"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"time_from": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Time From"
},
"time_till": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Time Till"
}
},
"required": [
"itemids"
],
"type": "object"
}