SendAlarmPointEvent

From Request Tracker Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Here's a scrip that you can use to send an alert to Alarm Point if a ticket is new in a particular queue. This scrip will only run if a ticket is created. If this condition is met, then it will create the appropriate parameters, and pass them to the Alarm Point message queueing agent. This could be done globally, but we have implemented it on the two queues --of 10-- which need after hours alerts. This effectively eliminates the need for a shared pager.

You must have an account with Alarm Point, have the appropriate groups and teams define there, have the queueing agent running on the same server as RT, and have https connectivity through a firewall.

Condition
User Defined
Action
User Defined
Template
blank
Applies to
Global

User Defined conditions and results

Custom Condition
if ($self->TransactionObj->Type eq 'Create')  {
    return (1);
}
Custom action preparation code
1;
Custom action cleanup code
{
    my $myId       = $self->TicketObj->EffectiveId;
    my $mySubject  = $self->TicketObj->Subject;
    my $binary = '/home/alarmpoint/alarmpointsystems/integrationagent/bin/APClient.bin';
    system($binary, '--map-data', 'vanderbilt', 'Cluster Group', $mySubject, 'RT', "RT $myId");
1;
}

See also: ManualScrips, WriteCustomAction, WriteCustomCondition