English isn't my native language.
I'm working on creating monitoring for a small ISP. The OLTs send us the data of each modem and they each have their own unique key. I need to make a calculated item that collects the data of groups of them based on the tags they have. For example: group1-modem-[username1], group1-modem-[username2], group1-modem-[username3], etc.
I already set it up so that it detects the group and tags them accordingly, but when I try to make a calculated item it won't allow me to use a wild card for the item key.
I'm I going about this the wrong way? Is there some alternative way for Zabbix to automatically group items with different keys into a single reading? Otherwise we would have to manually create and update triggers and items to monitor everything.
I'm working on creating monitoring for a small ISP. The OLTs send us the data of each modem and they each have their own unique key. I need to make a calculated item that collects the data of groups of them based on the tags they have. For example: group1-modem-[username1], group1-modem-[username2], group1-modem-[username3], etc.
I already set it up so that it detects the group and tags them accordingly, but when I try to make a calculated item it won't allow me to use a wild card for the item key.
Code:
avg_foreach(/OLT/*?[tag="Group:259" and tag="Status:Potency"])
Comment