HI,
I configured my item using Terraform provider https://registry.terraform.io/provid...ces/item_agent and works fine.
Now I see that this check start every 5 minutes but from (for each hour) 02,07.12.17,...etc is it possible to force it to start every 5 minutes but from 00.05,10,15,...etc?
I read the doc https://www.zabbix.com/documentation..._preprocessing
and if I understood I can set Custom intervals using variable
But I tried using
or
but it doesn't work.
Someone used it or have any advise to how can I solved my problem?
I configured my item using Terraform provider https://registry.terraform.io/provid...ces/item_agent and works fine.
Code:
resource "zabbix_item_agent" "verify" {
hostid = data.zabbix_template.template.id
key = "verify.failures"
name = "verify"
valuetype = "unsigned"
delay = "5m"
history = "7d"
trends = "365d"
applications = [zabbix_application.application.id]
depends_on = [
data.zabbix_template.template
]
}
I read the doc https://www.zabbix.com/documentation..._preprocessing
and if I understood I can set Custom intervals using variable
Code:
delay
Code:
delay = "${5m}/${01-7,00:00-24:00}"
Code:
delay = "5m/01-7,00:00-24:00"
Someone used it or have any advise to how can I solved my problem?
Comment