PDA

View Full Version : Trigger com 3 itens


aislanvg
28-07-2011, 23:31
Boa tarde Srs,

Tenho 3 itens (ITEM A, B e C) e preciso da seguinte trigger:

Se, ITEM A | ITEM B > ITEM C = alerta

Ou seja,

Se, Canceladas (ITEM A) ou Negadas (ITEM B) > Aprovadas (ITEM C) = Alerta

Desde já fico grato pela atenção.


Aislan Gomes

zabbix_zen
29-07-2011, 11:49
( {host_name:item_a.last(0)} | {host_name:item_b.last(0)} ) > {host_name:item_c.last(0)}

Ou,

( {host_name:item_a.last(0)} > {host_name:item_c.last(0)} )
|
( {host_name:item_b.last(0)} > {host_name:item_c.last(0)} )

aislanvg
29-07-2011, 14:15
Certo Zabbix Zen, vou criar as triggers e verificar o comportamento delas.

Valeu pela ajuda! :)