Use the IDUC EVTFT command to activate pop-up notifiers for accelerated events to be sent to clients, and to enable click-across functionality to the desktop event list or the Web GUI Active Event List.
IDUC EVTFT destination, action_type, row
For example, if you have set up an accelerated event flag within your probe rules file and added a column for this flag to the alerts.status table, you can add a condition within a post-insert trigger to examine the value within this column. If the value is satisfied for accelerated event notification, the event is then forwarded as a pop-up notification to specific Accelerated Event Notification clients. You can define the condition in the trigger by using the following format:
begin
if ( new.accelerated_event_column_name = 1 )
then
iduc evtft 'channel_name' , insert , new ;
end if;
end;
In this syntax, accelerated_event_column_name is the name of the column that holds accelerated event flag in the alerts.status table, and channel_name is the name of a channel over which accelerated event data is broadcast. Note that the channel name is case-sensitive, so ensure that you use the correct case within the syntax.
create or replace trigger evtft_insert
group channel_triggers
priority 1
comment 'Fast track critical events from alerts.status'
after insert on alerts.status
for each row
begin
if ( new.FastTrack = 1 )
then
iduc evtft 'FastTrack' , insert , new ;
end if;
end;