Hi!
We receive snmp-traps from a telephony system on a zabbix server 2.2.2.
The traps are shown in the "Latest Data" tab, translated by snmptt.
So far I created a trigger that puts a warning to the dashboard if any trap was discovered (so far it works!):
The trap contains of (ip address blanked out...):
My goal is to create a trigger that brings the info from the sent trap to the dashboard, filtered as "Standby server out of order", not as a general "I found a snmptrap"-Info.
How can I build a trigger for this purpose?
I already tried something like:
Has anyone a little input on this topic?
Thanks in advance,
Klaus
We receive snmp-traps from a telephony system on a zabbix server 2.2.2.
The traps are shown in the "Latest Data" tab, translated by snmptt.
So far I created a trigger that puts a warning to the dashboard if any trap was discovered (so far it works!):
Code:
{<HOST>:snmptrap.fallback.strlen()}>1
Code:
14:16:33 2015/11/20 MX-ONE-TS-ALARM-MIB::mxAlarmWarning Normal "Status Events" x.x.x.x - 21377 Lim 1, Unit SBYALR 3:2 warning Standby server is out of order, Cluster: svmxts06 Standby: svmxts06 no
How can I build a trigger for this purpose?
I already tried something like:
Code:
{<HOST>:snmptrap.fallback.str(order)}=1
{<HOST>:snmptrap.fallback.regex(/order/)}#0
{<HOST>:snmptrap.fallback.regex(^order$)}#0
Thanks in advance,
Klaus
Comment