Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Contents

Table of Contents

...

Overview

\n \n \n \n \n \n \n \n \n \n \n \n
Related \nDocumentationVersion \nof up.time \naffectedAffected \nPlatforms
\n AllAll

...

\n \n

Article \nContents \n

...

...

Overview

...

When a service outage occurs, up.time Uptime Infrastructure Monitor can generate an alert in a number of ways including sending an email, opening a Windows pop-up or initiating a pager message. You can also define your own Script Alert that \nwill will be executed on the monitoring station when an outage occurs. You can use the Script Alert option to create custom alerting methods that fit your exact needs. Some examples of custom alerting implementations include:

...

    \n
  • SMS modem-based \nalerting
  • \n
  • alerting
  • TAPI modem alerting
  • \n
  • Internal Problem \nTicket Ticket creation system alerts
  • \n
  • On call team \nrotation
  • \n
  • rotation
  • Customized alert \nemail email body formatting \n
  • \n

...

...

How custom alert scripts work

...

Please review the online documentation available here - Alerts and Actions

Custom alert scripts are defined with the Script Alert option on the Alert Profile page. The script is a path to a script or executable on the monitoring station system that up.time Uptime Infrastructure Monitor will run when a service outage occurs. You control the actions that the script or executable takes, which provides full control over how up.time Uptime Infrastructure Monitor sends out alert notifications during a service outage.

...

Note
titleNote

...

For

...

Windows alert scripts, the path used must use UNIX-style / instead of \ and must be quoted if your path contains spaces. For example:

...

"C:/Program

...

Files/uptime software/uptime/scripts/my_custom_alerter.bat"

...

When up.time When Uptime Infrastructure Monitor runs the script or executable, it passes on information about the specific service outage that triggered the alert. This information is passed using the system environment variables that are local to each execution of the recovery script. The script or \nexecutable executable is run once for each up.time Uptime Infrastructure Monitor user that will be notified using this alert.

...

The environment variables passed to the alert script and their meanings are included below : \n \nbut for the latest documentation please refer to Alert Profile and Action Profile Variables:

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
VariableDescriptionExample Contents
Service Message
VariableDescriptionExample \nContents
Service \nMessage Fields - These will remain constant for each \nexecution execution of your script associated with a single service outage.
UPTIME_ALERTTYPEThis is the \ntype type of alert messageOne of: \nProblemProblem, Recovery
UPTIME_HOSTNAMEThe name of the \nhost host that the service outage is associated with.oracle_server
UPTIME_HOSTSTATUSThe status of \nthe the host that the service outage is associated with.One of: OK, \nWARNWARN, CRIT, MAINT, UNKNOWN
UPTIME_MESSAGEThe output \nsection section of the alert.Type: Problem
\nService Service: db_status (CRIT/threshold error)
\nHost Host: oracle_db (OK)
UPTIME_SUBJECTThe subject \nline line that would normally appear in an emailed alert for this alert.Uptime Alert - \nUPTIMEUPTIME-oracle_server -> CRIT
UPTIME_SVCNAMEThe name of the \nservice service monitor generating this alert.UPTIME-oracle_server
UPTIME_SVCOUTPUTThe output of \nthe the service monitor generating this alert.processoccurrences: \n0 0 is less than 1
UPTIME_SVCSTATUSThe current \nstatus status of the service monitor generating this alert.One of: OK, \nWARNWARN, CRIT, MAINT, UNKNOWN.
UPTIME_DATETIMEThe date and \ntime time of the alert.Mon May 15 \n1111:12:22 EDT 2006
User \nrelated User related fields - these will change for each user that is \npassed passed to your script, the script will be executed once for each user \nthat that should be notified.
UPTIME_CONTACTLOGINNAMEThe login name \nof of the user who is being notified.testuser
UPTIME_DESKTOPHOSTThe windows \ndesktop desktop hostname setting for the user being notified.testuser-pc
UPTIME_DESKTOPWORKGROUPThe windows \nworkgroup workgroup for the desktop host specified above.WORKGROUP
UPTIME_EMAILThe email \naddress address associated with the user who is being notified.[email protected]
UPTIME_MOBILEThe pager \nnumber number associated with the user being notified.[email protected]
General \nfields
General fields
UPTIME_SCRIPTThe name of the \ncurrent current script being executed.C:/Program \nFilesFiles/uptime software/uptime4/scripts/my_custom_alerter.bat
UPTIME_SMTPHELOSTRINGThe HELO string \nused used in your SMTP server configuration. \n
 
UPTIME_SMTPPASSWORDThe password \nused used from authentication in your SMTP server configuration. \n
 
UPTIME_SMTPPORTThe server port \nused used in your SMTP server configuration. \n
 
UPTIME_SMTPSENDERThe sender \naddress address string used in your SMTP server configuration. \n
 
UPTIME_SMTPSERVERThe server \nhostname hostname used in your SMTP server configuration. \n
 
UPTIME_SMTPUSERThe user name \nused used for authentication in your SMTP server configuration.  \n

...

...

  

...

 

Environment Variable Examples

...

How the script or executable uses environment \nvariables variables will vary depending on the language you have used to write your script or executable. The following examples illustrate how environment variables are accessed in several common languages:

...

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
LanguageCommon \nmethods methods of accessing environment variables.
Perl \n

Use of the ENV \narray array to access environment variables with Perl. For example:

\n

#!/usr/bin/perl
\nmy my $user_email = $ENV{UPTIME_EMAIL};
\nmy my $user_mobile = $ENV{UPTIME_MOBILE};

\n

PHPWhen run from \nthe the command line, use the getenv() \nfunction function to access environment variables within PHP. For example: \n

«?php
\n$user $user_email = getenv('UPTIME_EMAIL');
\n$user $user_mobile = getenv('UPTIME_MOBILE');

\n

Bash and KshBash and Ksh \nenable enable you to access local environment variables just like any other \nlocal local variable. For example: \n

#!/bin/bash
\nEMAIL EMAIL=$UPTIME_EMAIL
\nMOBILE MOBILE=$UPTIME_MOBILE

\n

Batch FileAdd the % symbol around \nthe the names of environment variables in Windows batch files. For example: \n

echo %UPTIME_EMAIL%
\necho echo %UPTIME_MOBILE%

\n

VB ScriptUse the the \n oShell.Environment \nlookup lookup function to access environment variables with \nVB VB Script. For example: \n

Dim email, mobile
\nDim Dim WshShell, objEnv
\n
\nSet
Set WshShell = CreateObject("WScript.Shell")
\n
\nSet
Set objEnv = WshShell.Environment("Process")
\n
\nemail
email = objEnv("UPTIME_EMAIL")
\nmobile mobile = objEnv("UPTIME_MOBILE")

\n

...