Setting Up the Notification Process

Concepts of Notifications

A Notification in terms of Avantra basically is the process of reacting to a certain event with a predefined action. A typical event would be a changed check status, and an action can be as simple as writing an entry into a log file, and as powerful as stopping an SAP System.

The events that serve as a trigger are called Notification Elements in Avantra. These are:

Primary

Whenever one of these events is processed and it triggers an action, we are talking about a Primary Notification. There are further events that can only trigger an action if a Primary Notification has been generated already:

Resending

In this case we refer to Resending Notifications.

The operations you can trigger are called Output Channels and comprise of the following:

  • Send an Email (requires the Permission Permission.receive_notification_messages for the recipient User)

  • Send a Browser Notification (requires the Permission Permission.receive_notification_messages for the recipient User)

  • Send a XanMobile push message (requires the Permission Permission.receive_notification_messages for the recipient User)

  • Call a REST or a SOAP web service.

All these operations can be delegated to Customers, i.e. Customers in Avantra are able to define these Notifications themselves. Other operations, like shown below, can be defined only by the Service Provider because they may affect shared resources:

  • Write into a Log File or the Windows Event log

  • Write files based on templates (e.g. XML files)

  • Run arbitrary commands on the Avantra Server or the managing Avantra Agent

  • Create Tickets or Ticket log entries

  • Send a text message via Amazon Web Services (requires the Permission Permission.receive_notification_messages for the recipient User)

  • Stop or start an SAP System, an SAP Instance, or a Cloud Server

Many of the Output Channels listed above can be used to deliver Notifications into third-party systems, such as other monitoring or system management applications.

The trigger criteria on the one hand and the Output Channels on the other hand combine to the so-called Notification Actions. While Notification Actions may comprise of more (for example, Filter Lists and Resolvers which we will describe later in this chapter), we want to outline the two different flavours of Notification Actions:

Global vs. Customer Notifications

Technically speaking, there are modular Notification Actions and all-in-one Notification Actions. In modular Notification Actions, the Output Channels (and the Filter Lists and Resolvers) are independent objects that can be combined into Notification Actions. This allows to re-use them easily but makes configuration a little harder. An all-in-one Notification Action is a single object that contains an Output Channel (and perhaps a Filter List and a Resolver). You cannot re-use these components, but configuration is a lot easier.

If a Service Provider wants to delegate the configuration of Notification Actions to a Customer, the Customer can only make use of all-in-one Notification Actions. The Service Provider of course can setup modular Notification Actions.

To distinguish those two, the modular ones are labelled Notifications [Global] and the all-in-one variant is labelled Notifications [Customer].

For Customers that have the Permission to create their own Notifications, the all-in-one actions are simply labelled Notifications.

We focus on Notifications [Global] in this chapter and describe Notifications [Customer] briefly in Defining Notifications [Customer].

Available Output Channels

The following list contains all available Output Channels with a detailed description:

Email

For each Output Channel of this type you can define an SMTP Server, a sender address, username and password for SMTP authentication (if required), and a template for the e-mail subject and body.

You can define that an Output Channel of this type is restricted to a certain User (recipient), to a Group of Users, to one or multiple Customers — which implies that it is restricted to all Users of the selected Customers that have the necessary Permissions.

Mobile Notification

Any Avantra user using the Avantra Mobile App on an iOS or Android device, is able to receive mobile notifications.

You can define that an Output Channel of this type is restricted to a certain User (recipient), to a Group of Users, to one or multiple Customers — which implies that it is restricted to all Users of the selected Customers that have the necessary Permissions.

AWS — Simple Notification Service

Notification messages are sent to a topic by means of the Amazon Web Services Simple Notification Service.

This Output Channel provides all the options that are available for the Simple Notification Service in Amazon Web Services.

AWS — SMS

Notification messages are sent as text messages by means of the Amazon Web Services Simple Notification Service.

This Output Channel provides all the options that are available for the SMS service in Amazon Web Services.

You can define that an Output Channel of this type is restricted to a certain User (recipient).

Write into a log file

For each Output Channel of this type you can define an output file name, a template line defining the log file format, and a maximum line length.

Run an external command

For each Output Channel of this type you can define an executable to run, a working directory, and the command line call as well as a timeout restricting the run time.

The command can be executed on the Avantra server, the Server hosting the Avantra Agent the Check is executed on, or on Servers defined by use of a System Selectors.

Rewrite a template file

For each Output Channel of this type you can define an executable to run, a working directory, and the command line call as well as a timeout restricting the run time.

Create a Ticket

This Output Channel creates a Ticket within Avantra. You can define a short and a long description. Critical Check Results create Tickets with priority High, Warning Check Results create Tickets with priority Medium.

Windows Event Log

This Output Channel creates an entry within the Windows Event Log if the Avantra Master is running on Microsoft Windows operating systems.

RESTful Web Service

This Output Channel delivers Notifications by calling a REST API that is provided by a third-party Web Service. It offers Basic and OAuth 2.0 authentication schemes, the latter of which are provided by profiles that may be shared between different REST and SOAP Output Channels.

SOAP Web Service

This Output Channel delivers Notifications by calling a SOAP Web Service. It offers Basic and OAuth 2.0 authentication schemes, the latter of which are provided by profiles that may be shared between different REST and SOAP Output Channels.

Avantra UI Browser Notification

This Output Channel delivers Notifications to Users logged into Avantra UI.

You can define that an Output Channel of this type is restricted to a certain User (recipient), to a Group of Users, to one or multiple Customers — which implies that it is restricted to all Users of the selected Customers that have the necessary Permissions.

Ticket Log

This Output Channel is only available for Ticket Notification Actions and allows updating the particular Ticket triggering the Notification Action.

SAP Start/Stop

You can perform a Start, a Soft Shutdown, or a Hard Shutdown operation on

Cloud Automation

You can perform a Start or a Stop operation on:

Null Output Channel

An Output Channel that produces no output at all. Sounds useless, but you can use this if you want to only perform Check Confirmation.

Composite Output Channel

This Output Channel combines multiple other Output Channels. You can configure the conditions under which a particular Notification message is passed to one or more of the combined Output Channels.

All Output Channels can be restricted to a single or multiple Customers. In this case they are only effective for Notifications generated for Notification Elements of Managed Objects owned by the defined Customers.

Every Notification takes some data with it. This data is primarily derived from the Notification Elements the Notification is triggered by, as well as the Managed Object the Notification Elements was running on, and the Customer owning the Managed Object. And there is even more, like the Notification reason, various time stamps, etc.

This data is available in the Output Channels by means of the so-called Interpolations. You best think of Interpolations as placeholders that are replaced by some real-world data once an Output Channel is executed.

If you are working with Filter Lists and Output Channels and you are working with Macros, you will find a button Convert to FTL that allows you to convert them into Interpolations.

Example 1. Output Channel with resolved Interpolations

The following shows the default template value for an e-mail body used in the Email Output Channel:

The status of check ${check.name} on system ${system.name} turned to ${check.statusString} (${check.status})
at date ${check.statusChangeDate?string('yyyy-MM-dd HH:mm:ssZ')} (since ${check.statusAge} [h:mm:ss]).

The check returned the following status message:
${check.result}

Notification No. ${notification.number} was generated at ${notification.date}.

Generated by: ${xandria.release}

Each occurrence of format ${text} is an Interpolation. In the following example the Output Channel was executed for an AGENTALIVE Check that turned from status Critical to Ok. The Interpolations have been replaced in the following way:

The status of check AGENTALIVE on system saturn turned to OK (0)
at date 2016-03-30 09:45:44 (since 0:05:20 [h:mm:ss]).

The check returned the following status message:
Changed status from CRITICAL

Notification No. 1 was generated at 2016-03-30 09:51:04.

Generated by: Avantra 20.5.0

Once you define an Output Channel, Avantra UI provides a drop-down list with available Interpolations at all Output Channel definition fields where Interpolations can be used.

In the Notification Management, Interpolations replace Macros which are deprecated.

The term Interpolation comes from the Apache Freemarker Template Language ( FTL) which is used in the Notification process since Avantra 6. For the sake of consistency and easier reference to FTL, we stick to the terminology used in there.

In the example above, there is one Interpolation different from the other ones. ${check.statusChangeDate} returns a date object. It cannot be used directly to produce output. In order to evaluate it in a string context, we have to use ${check.statusChangeDate?string('yyyy-MM-dd HH:mm:ssZ')} (Or any other option described in Built-ins for date/time/date-time values - Apache FreeMarker Manual).

Notification Actions

This section defines how a (simple) Notification Action glues together the triggers listed at the beginning of the chapter with the Output Channels listed in Available Output Channels.

Apart from the trigger criteria an Notification Action can cover:

Selector

Notification Actions for Checks Changes, and Tickets can filter the observed elements by selectors. This helps to define the exact subset of Checks, Changes, or Tickets that has to be monitored. For CCMS Alerts there is no such option.

Service Hours

The Notification Action is only executed during the time range defined by the selected Service Hours record.

Maximum attempts

Assume your Output Channel fails to deliver; perhaps your SMTP server is not available temporarily. You can define how often the Output Channel shall be executed before the Notification Action fails.

Filter Lists

In case you want a more fine grained control of your Notifications besides the restriction by Check Selectors and Service Hours, you can link Filter Lists to your Notification Action. Output Channels are executed only in case the defined filters are passed.

Resolver

If you want additional data to be included in the Output Channels (i.e. data that is not available through the standard Interpolations) you can define a so-called Resolver that is executed whenever an Notification Action fires, and that provides additional variables. The Resolver basically is a program you need to provide that takes some of the standard Interpolations as input and provides custom data as result.

In order to distinguish the Resolver you may define from the internal one resolving standard Interpolations, we sometimes also use the term “Custom Resolver” .

Confirmation of RealTime Monitoring Checks/Daily Checks

Notification Actions can be used to confirm RealTime Monitoring Checks or Daily Checks. This is especially helpful if you deliver a Notification into a third-party monitoring or problem management application and you want to make Avantra to reflect this in, for example, the RealTime Monitoring views.

If you only want to confirm RealTime Monitoring Checks or Daily Checks without delivering Notifications the Null Channel Output Channel will prove useful.

All these items are described in the upcoming sections.

Each Notification Action only supports one of the five available Action Types: Checks, Changes, Tickets CCMS Alerts, and Server Events

Once Avantra finds a Notification Element that matches the trigger criteria of a defined Notification Action, this Notification Action is going to be processed.

A Notification Element that is being processed by a Notification Action is also called a Notification message. Every Notification message has a status depending on the result of filter evaluation and — of course — on the success of the Output Channel.

The status information is saved in the Avantra Database and can be displayed in Avantra UI.

Table 1. Notification Message Status
Message Status Description

OK - Blocked

The Notification has been blocked by a filter

OK - Sent

The has been successfully sent

Pending

A Notification attempt failed but will be retried

Aborted

The Output Channel failed to deliver

Scheduled

The Notification is scheduled to be sent

Initial

A Notification has not been processed by the defined Notification Action because e.g. the trigger criteria did not match

Defining Output Channels

Although you can define an Output Channel while you are defining an Notification Action we describe the two steps separately in here.

Define an Email Output Channel

In order to define an Email Output Channel proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  Email in the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Finish button. The Output Channel detail view is opened automatically.

  2. Define a valid sender e-mail address in field Sender Mail Address, a default for this value can be defined in [Notifier.Mail.fromSenderName]. A Sender Name can be configured also but is not mandatory. If more detailed control over the sender is required, open the sender details with the Edit Details…​ button after you have saved the Output Channel. The Reply-To and the Return-Path e-mail address can be entered there.

  3. Select a value for Recipient.

    1. If you want this Output Channel to deliver only to a single user, select Single user. Choose a User from the User drop-down list. You can only select a User that has the Receive Notification Messages Permission for the Customers selected in Customer Filter.

    2. If you want this Output Channel to deliver to a group of users, select Group of users. You can only select a Group that has a Role containing the Receive Notification Messages Permission for the Customers selected in Customer Filter.

    3. If you want this Output Channel to deliver to to all Users of the selected Customers (or all Customers) that have the Receive Notification Messages Permission, select Users of selected/all customers.

  4. Select a value for Priority. Possible values are: Highest, High, Normal, Low and Lowest. Please note that it depends on the recipient’s mail client how this value is interpreted.

    You can also choose to send the messages as blind carbon copies (BCC) only.

  5. Define the Subject of the e-mail.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

  6. To edit the Mail Content press the Edit mail content…​ button. A dialog will be opened with the details of the mail content. It is possible to define either an HTML or plain text content.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

    When finished, Save your details and close the dialog.

  7. Refer to Handling Mail Servers on how to create a mail server, and afterwards select a mail server from the Mail Server drop-down list.

  8. Push the Save button.

You can test your settings using the Send Test Email button.

Handling Mail Servers

To create a Mail Server, perform the following steps:

Procedure: Adding a Mail Server
  1. Select Configuration  Notifications from the top-level menu. Select More  Manage Messaging Services …. Choose New  Mail Server.

  2. Fill in a Name, an optional Description, and choose a Customer.

    Choose either SMTP or SMTPS from the Protocol drop-down list.

    Define the server hostname in Target and optionally the Port number.

    Choose if or if not the server requires TLS (i.e. the so called STARTTLS method).

    If your mail server requires authentication, please fill in a User and a Password.

  3. Push the Create button to finish.

You can now use the mail server in the Mail Server field of the Email Output Channel.

Define a Log File Output Channel

In order to define a Log File Output Channel proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  Write into a log file in the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Next button.

  2. Define a File Name. If you do not enter an absolute path to the file, the file location will be relative to the log/notifier directory of the Avantra Master.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

    If you use Interpolations within this field you may face problems if the resolved value contains characters that are invalid for the use with file or directory names (e.g. the NOTIFICATION_DATE Interpolation contains a colon :). In this case you should write ${escapeFile(text)} instead of ${text}. escapeFile is a method that escapes these characters probably.

  3. Define a Line Format.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

  4. You may define a maximum length for every line in Line Length. By default this is unrestricted.

    You may define a maximum size of the log file in field Maximum File Size. If the maximum file size is reached, a timestamp is appended to the file name and a new log file is created. Make sure you define a value ≥ 1 in Number of old Files to keep in this case.

  5. Push the Finish button.

Define a Command Output Channel

In order to define a Command Output Channel proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  Run an external command in the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Next button.

  2. Define a Working Directory (optional). If you do not enter an absolute path to the file, the file location will be relative to the tmp directory of the Avantra Master.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

    If you use Interpolations within this field you may face problems if the resolved value contains characters that are invalid for the use with file or directory names (e.g. the NOTIFICATION_DATE Interpolation contains a colon :). In this case you should write ${escapeFile(text)} instead of ${text}. escapeFile is a method that escapes these characters probably.

  3. You may define a value for Command Timeout.

  4. You have to define the command line call (i.e. the executable plus all the arguments) in the field Command Line.

    In the next step you can also choose different commands per operating system or select the host(s) where to execute the command.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

    If you use Interpolations within this field you may face problems if the resolved value contains quotes. In this case you should write ${escapeCmd(text)} instead of ${text}. escapeCmd is a method that escapes these characters probably.

  5. Push the Finish button. The Output Channel detail view is opened automatically.

  6. By default, the command is executed on the host running the Avantra Master. But you can also choose a different Scope: either the Server hosting the Managed Object the Notification Element is generated for, or an arbitrary set of Servers defined by a Selectors.

    For command executed on remote hosts, it may be handy to define different commands for Unix and Windows hosts. Push New in order to add an additional command for a different platform. Adapt the OS field accordingly.

    Push the Save button in case you made any modifications.

Define a Rewrite a template Output Channel

In order to define a Rewrite a template Output Channel proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  Rewrite a template filein the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Next button.

  2. Define a File Name. If you do not enter an absolute path to the file, the file location will be relative to the log/notifier directory of the Avantra Master.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

    If you use Interpolations within this field you may face problems if the resolved value contains characters that are invalid for the use with file or directory names (e.g. the NOTIFICATION_DATE Interpolation contains a colon :). In this case you should write ${escapeFile(text)} instead of ${text}. escapeFile is a method that escapes these characters probably.

  3. Define a template text in Template.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

    If you use Interpolation>s within this field you may face problems if the resolved value contains characters that have a special meaning in XML, like < or >. In this case you should write ${escapeXml(text)} instead of ${text}. escapeXml is a method that escapes these characters probably.

  4. Push the Finish button.

Define a Ticket Output Channel

In order to define a Ticket Output Channel proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  Create a ticketin the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Next button.

  2. Define a Ticket Summary.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

  3. Optionally, define a template text in Ticket Detail Description.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

  4. Push the Finish button.

Define an AWS — Simple Notification Service Output Channel

In order to define an Output Channel proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  AWS – Simple Notification Servicein the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Next button.

  2. Create an AWS – Simple Notification Service record as described in Handling AWS SNS Services and select it from the Service drop-down list.

  3. Define a Topic ARN.

    For more information hover over (?).

  4. Define an optional Subject.

    For more information hover over (?).

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

  5. Define a Message.

    For more information hover over (?).

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

  6. Define Attributes.

    For more information hover over (?).

Handling AWS SNS Services

You need to create an AWS Simple Notification Service record in Avantra before you can make used of the AWS – Simple Notification service.

This record contains the credentials of an Amazon Web Services user with programmatic access and a customer managed policy policy attached.

See Procedure: Create an API User with minimum access to EC2 on how to create such an AWS user and a policy, but use the the following JSON policy instead:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "AllowPublishToTopic",
            "Effect": "Allow",
            "Action": [
                "sns:Publish"
            ],
            "Resource": "*"
        }
    ]
}
Procedure: Adding an AWS – Simple Notification Service
  1. Select Configuration  Notifications from the top-level menu. Select More  Manage Messaging Services …. Choose New  AWS – Simple Notification Service.

  2. Fill in a Name, an optional Description, and choose a Customer.

    Fill in the AWS Access Key ID, the AWS Secret Access Key, and choose a Region.

  3. Push the Create button to finish.

You can now use the AWS – Simple Notification Service in the Service field of the AWS — Simple Notification Service Output Channel.

Define an AWS — SMS Output Channel

In order to define an Output Channel proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  AWS – SMS in the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Next button.

  2. Create an AWS – Simple Notification Service record as described in Handling AWS SNS Services for SMS and select it from the Service drop-down list.

  3. Define a Sender ID.

    For more information hover over (?).

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

  4. Choose a Mode. See also AWS - Worldwide SMS Pricing

  5. Define a Max. Price (USD) you are willing to pay per text message. For more information hover over (?).

  6. Define a Message.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

  7. Select a value for Recipients.

  8. Push the Save button.

Handling AWS SNS Services for SMS

You need to create an AWS Simple Notification Service record in Avantra before you can make used of the AWS – SMS service.

This record contains the credentials of an Amazon Web Services user with programmatic access and a customer managed policy policy attached.

See Procedure: Create an API User with minimum access to EC2 how to create such an AWS user and a policy, but use the the following JSON policy instead:

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "AllowSendSms",
            "Effect": "Allow",
            "Action": [
                "sns:SetSMSAttributes",
                "sns:Publish"
            ],
            "Resource": "*"
        }
    ]
}
Procedure: Adding an AWS – Simple Notification Service
  1. Select Configuration  Notifications from the top-level menu. Select More  Manage Messaging Services …. Choose New  AWS – Simple Notification Service.

  2. Fill in a Name, an optional Description, and choose a Customer.

    Fill in the AWS Access Key ID, the AWS Secret Access Key, and choose a Region that supports SMS sending.

  3. Push the Create button to finish.

You can now use the AWS – Simple Notification Service in the Service field of the AWS — SMS Output Channel.

Define an UI Browser Output Channel

In order to define an UI Browser Output Channel proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  Avantra Browser Notificationin the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Next button.

  2. Select a value for Recipient:

    1. If you want this Output Channel to deliver only to a single user, select Single user. Choose a User from the User drop-down list. You can only select a User that has the Receive Notification Messages Permission for the Customers selected in Customer Filter.

    2. If you want this Output Channel to deliver to a group of users, select Group of users. You can only select a Group that has a Role containing the Receive Notification Messages Permission for the Customers selected in Customer Filter.

    3. If you want this Output Channel to deliver to to all Users of the selected Customers (or all Customers) that have the Receive Notification Messages Permission, select Users of selected/all customers.

      Push the Next button.

  3. Define a Message.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

  4. Push the Finish button. The Output Channel detail view is opened automatically.

  5. You can also select a Severity and upload an audio file for Audio Source. The audio file is played whenever a browser notification is generated.

Define a Mobile Output Channel

To define an Output Channel, proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Channels tab. Choose New  Avantra MobileApp Notificationin the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Next button.

  2. Select a value for Recipient.

    1. If you want this Output Channel to deliver only to a single user, select Single user. Choose a User from the User drop-down list. You can only select a User that has the Receive Notification Messages Permission for the Customers selected in Customer Filter.

    2. If you want this Output Channel to deliver to a group of users, select Group of users. You can only select a Group that has a Role containing the Receive Notification Messages Permission for the Customers selected in Customer Filter.

    3. If you want this Output Channel to deliver to to all Users of the selected Customers (or all Customers) that have the Receive Notification Messages Permission, select Users of selected/all customers.

  3. Push the Next button.

  4. Define an Alert Message.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

  5. Push the Finish button.

Define an EventLog Output Channel

This Output Channel is only available if the Avantra Master is running on Microsoft Windows operating systems.

In order to define an EventLog Output Channel proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  Windows event log in the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Next button.

  2. Define a Message Format.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

  3. You can also define an Event Source, Event Server, Event ID, Category ID, and select a Type.

  4. Push the Finish button.

Define a REST Output Channel

Consult the documentation of the REST API of the Web Service you plan to connect to.

In order to define a REST Output Channel proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  RESTful Web Service in the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Finish button. The Output Channel detail view is opened automatically.

  2. Define the REST API Url.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

  3. Choose a Protocol, and the request Method.

  4. You can define additional headers using the next to Headers.

  5. If you desire authentication or authorization, you can choose between Basic and OAuth 2.0. For Basic authentication, fill in User and Password. For the setup of OAUth 2.0 see Using OAuth 2.0 with the RESTful Web Service Output Channel.

  6. Push the Save button.

Define a ServiceNow Incident Output Channel

This function is only available with the Avantra Pro Edition.

Before you start, please perform the steps described in ServiceNow Integration, in particular Authorizing Avantra with ServiceNow.

To define a ServiceNow Incident Output Channel, proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  ServiceNow Incidentin the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Finish button. The Output Channel detail view is opened automatically.

  2. Choose a value for ServiceNow Authentication, the Urgency.

  3. Adapt Short Description and Additonal Comments, if desired.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

  4. Push the Save button.

Use Additional Attribute Mapping

In order to map additional fields, proceed as follows:

  1. In your ServiceNow instance, under System Definition search for tables and select it.

    servicenow select tables
  2. Search for imp_incident and select it. This table has been imported with the Avantra Integration:

    servicenow imp incident table
  3. Use New to create additional attributes:

    servicenow imp incident new

    Please note that the field Column Name gets filled automatically. Keep a note of these values. You will need them later for the definition in the Output Channel.

  4. Map the new fields to the existing ServiceNow table, Search for transform in your ServiceNow instance. Under Administration, click on Transfrom Maps. Select table Transform Incidents.

    servicenow transform incidents

    Map all the fields using the Mapping Assist:

    servicenow mapping assist menu
    servicenow mapping assist

    Push the Save button once you are done.

  5. In Avantra UI, proceed to the ServiceNow Output Channel and fill in the mappings:

    servicenow oc mappings

Define a SOAP Output Channel

Consult the documentation of the Web Service you plan to connect to.

In order to define a SAP Output Channel proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  SOAP Web Servicein the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Finish button. The Output Channel detail view is opened automatically.

  2. Define the WSDL Url.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

  3. Choose a Protocol, and the request Method.

  4. You can define additional headers using the next to Headers.

  5. If authentication or authorization is needed, you can choose between Basic and OAuth 2.0. For Basic authentication, fill in User and Password. For the setup of OAUth 2.0 see Using OAuth 2.0 with the RESTful Web Service Output Channel.

  6. Push the Save button.

Define a Cloud Automation Output Channel

This function is only available with the Avantra Pro Edition.

To define an Cloud Automation Output Channel, proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  Cloud Automationin the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Finish button. The Output Channel detail view is opened automatically.

  2. In Selection choose the Cloud Server you want to stop or start. This can be:

  3. In Action, you can choose whether to start or stop the System.

  4. Push the Save button.

Define a SAP Automation Output Channel

This function is only available with the Avantra Pro Edition.

To define an SAP Automation Output Channel, proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  SAP Start/Stop in the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Finish button. The Output Channel detail view is opened automatically.

  2. In Selection choose the Systems you want to stop or start. This can be:

  3. In Action you can choose whether to start the System or to perform a soft or hard shutdown. For a soft shutdown – which is only available for ABAP SAP Instances and SAP System – you can also define a soft shutdown timeout.

  4. Push the Save button.

Define a Ticket Log Output Channel

This Output Channel is only available for Ticket Notification Actions. It modifies the Ticket that triggers the Notification Action.

To define a Ticket Log Output Channel, proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  Create a ticket log in the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Finish button. The Output Channel detail view is opened automatically.

  2. Choose values for Type, Author, and Ticket Log. Optionally choose a New Status and if or if not the entry will be flagged Hidden.

  3. Fill in a text for the Log Content.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

  4. Push the Save button.

Define a Null Output Channel

To define Null Output Channel, proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  Null channel in the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Finish button.

Define a Composite Output Channel

To define a Composite Output Channel, proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Output Channels tab. Choose New  Composite Output Channel in the toolbar.

    1. Fill in a Name and optionally a Description. The name of the Output Channel has to be unique.

    2. If you plan to restrict the Output Channel to one or multiple Customers select the appropriate items from Customer Filter.

    3. Choose one or more of the Supported Action Types.

      Push the Next button.

  2. Fill in at least two Output Channels using , and for the second one choose whether it is executed in any case, only if the previous Output Channel fails, or only if the previous Output Channel succeeds. Repeat for a third, forth, and fifth Output Channel, if desired.

  3. Push the Finish button.

You cannot add a Composite Output Channel into another Composite Output Channel.

If you are working with Filter Lists and Output Channels and you are working with Macros, you will find a button Convert to FTL that allows you to convert them into Interpolations.

Defining Actions

To configure a Notification Action, proceed as follows:

Procedure: Defining an Action for Checks
  1. Select Configuration  Notifications from the top-level menu. Select the Actions tab. Choose New in the toolbar. Select Action for Checks … from the drop-down list.

  2. Fill in a Name and optionally a Description. The name of the Notification Action has to be unique.

    Push the Next button.

  3. Choose one of Select a Pre-Defined System Selector or Define specific 'Ad-Hoc' Custom Selection. In the first case choose the desired Check Selector from the list.

    You can define a specific ad-hoc custom selection (which is only valid for this particular Notification Action if you have set the flag next to Define specific 'Ad-Hoc' Custom Selection.

    1. Push the Create button.

    2. Choose the Check Selector Type from the list and push Next.

    3. Fill in selection criteria, push the Test Selector to verify the selection, and hit the Save & Close button.

  4. Select the Status. Please note that you may also have included the check status in the Selector already. The values you choose here do further restrict the Selector. But they do not extend its selection.

  5. You may choose if or if not this Notification Action shall confirm the check status (Confirm).

    Push the Next button.

  6. In the Output Channel drop-down list, select the output channel defined in Defining Output Channels. The other options are covered in Defining Filter Lists and Defining a Resolver.

  7. You may restrict the Notification Action to certain Service Hours. (See also Defining Service Hours)

  8. Switch to the Channels tab and add one or more of the Output Channels defined in Defining Output Channels.

  9. Push the Finish button. The Notification Action detail view opens.

  10. You can define resending options:

    • you may select if Notifications triggered by Check Confirmation are effective for this Notification Action. Select UNCONFIRMED, CONFIRMED, or BOTH in Resend When Confirmation Changes To in this case.

    • you may define an interval for periodic resending in Resend RTM Notifications Every (in minutes).

    • you may select if Notifications due to sub-status changes are effective for this Notification Action. Mark the check box Resend When RTM Sub-Status Changes in this case.

    • you have to select the check status that are effective for resending in Resend on Status. You can only select a subset of the overall values selected in Notification Status previously.

    You need to choose at least one of them. Keep in mind that only the resending due to confirmation changes is effective for Daily Checks and Daily Check details.

  11. Push the Save button.

You now have created a (minimum) Notification Action for Checks, consisting of only the trigger definition and an Output Channel.

The Notification Action is not active unless you push Activate. However, you may want to leave it deactivated until you have it successfully tested.

Procedure: Defining an Action for Changes
  1. Select Configuration  Notifications from the top-level menu. Select the Actions tab. Choose New in the toolbar. Select Action for Changes … from the drop-down list.

  2. Fill in a Name and optionally a Description. The name of the Notification Action has to be unique.

    Push the Next button.

  3. Fill in selection criteria, push the Test Selector to verify the selection, and hit the Save & Close button.

  4. In Event choose the trigger criterion for the Notification. Select an Output Channel in Output Channel.

The Notification Action is not active unless you push Activate.

Procedure: Defining an Action for Tickets
  1. Select Configuration  Notifications from the top-level menu. Select the Actions tab. Choose New in the toolbar. Select Action for Tickets … from the drop-down list.

  2. Fill in a Name and optionally a Description. The name of the Notification Action has to be unique.

    Push the Next button.

  3. Fill in selection criteria, push the Test Selector to verify the selection, and hit the Next button.

  4. Select an Output Channel in Output Channel and push the Finish button.

  5. You can adapt the Trigger Criteria: Choose Status and Priority in order to be notified if Ticket status or priority change to the selected values. You can also choose to be notified in case a new Ticket log entry is added, either by the Owner, the Caller or both.

    The other options are covered Defining a Resolver.

  6. You may restrict the Notification Action to certain Service Hours. (See also Defining Service Hours)

  7. Push the Save button in case you made any changes.

Procedure: Defining an Action for CCMS Alerts
  1. Select Configuration  Notifications from the top-level menu. Select the Actions tab. Choose New in the toolbar. Select Action for CCMS Alerts … from the drop-down list.

  2. Fill in a Name and optionally a Description. The name of the Notification Action has to be unique.

    Push the Next button.

  3. Select the Status for the CCMS Alerts.

    Push the Next button.

  4. In the Output Channel drop-down list select the output channel defined in Defining Output Channels. The other options are covered in Defining Filter Lists and Defining a Resolver.

  5. You may restrict the Notification Action to certain Service Hours. (See also Defining Service Hours)

  6. Push the Finish button.

In the Channels tab you can define multiple Output Channels. If you fill in more than one, the Channels tab behaves like a Composite Output Channel.

Verifying Action Results

Testing Check Actions

Once you have defined a new Notification Action, you should test it. You can choose if a test Notification Action shall run through the Output Channel or suppress it. If it runs through, the Notification is delivered indeed (e.g. you will find it in the defined log file, or a mail is sent), but it will not interfere with the other Notifications work flow, i.e. it will not increase Notification numbers, etc.

You should keep the Notification Action inactive while you perform testing and only activate it once you are satisfied with the test results.

The test facility provides the option to select an existing Check, to apply the currently selected Notification Action to this Check, and to report the Notification Action result.

But you also have the option to overwrite the current Check properties with other values: assume the current check status is Ok but your Notification Action fires only for Critical states. In this case you can overwrite the check status and see what would happen if the check status was Critical. Or you perform testing during office hours and you would like to know how the Notification Action is processed during night time. Or what would happen if the particular check status has not change 10 minutes before, but 2 hours before. All these kind of modifications can be supplied within the test facility.

In order to test an Notification Action proceed as follows:

  1. Select Configuration  Notifications from the top-level menu. Select the Actions tab. Open the desired Notification Action and switch to the Test tab.

  2. Select a Check Type and a Monitored System.

    By default the selection boxes filter the Systems or the Checks not applicable to the defined Check selector. This can be turned off by clearing the Filtered by check selector box.

    The field features a type-ahead search!

    Depending on the selection, several other selection criteria have to be filled in:

    1. In case of a RTM Check you have to select a Check from the drop-down lists.

    2. In case of a Daily Check there is nothing left to do. The latest Daily Check is selected automatically.

    3. In case of a Daily Check Detail, you have to select a Daily Check Detail (of the latest Daily Check).

  3. By default Suppress Output Channel Delivery guarantees that Output Channel is not passed. Clear the flag otherwise.

  4. You may override the current check status — select a Test Check Status.

  5. You may override the current check message — fill in a value in Test Check Result.

  6. You may select a different evaluation date and time, i.e. do as if this test would run at a different point in time — fill in values in Test Evaluation Date.

  7. In case you want to test periodic resending, fill in values for Test Last Status Change Date, Test Last Notification Date, and optionally Test Notification Number.

  8. You may also want to test the behaviour in case the Check is confirmed or unconfirmed.

  9. Push the Test button. The result will be displayed in a pop-up.

  10. You may modify the filled in values and repeat testing.

Example 2. Test Action as if AgentAlive was Critical

For this example, we define an Output Channel:

Output Channel
Name

Log to notifier_action.log

Customer Filter

Empty

Support Action Types

Checks

File name

Leave default

Line Format

Leave default

We continue with a Notification Action for Checks:

Action
Name

Check Action for AgentAlives

Define specific 'Ad-Hoc' Custom Selection

Using 'Check' search criteria with Check Name only AGENTALIVE

Status

Critical and Warning

Channels Tab

Select the Output Channel#Log to notifier_action.log# as defined above

Assume you test the defined Notification Action with the following parameters:

Check Type:

RTM Check

Monitored System:

alpha

Check:

AGENTALIVE [RTM]

Suppress Output Channel Delivery:

checked

Check Status:

CRITICAL

After pushing the Test, the output would be like:

INFO set evaluation time to: Mon Jan 25 13:39:06 CEST 2020.
INFO Mode: RTM Check.
INFO Load last check result:
Last message from Avantra Agent is at least 5:23:00 ([h]:mm:ss) old
INFO set last check date to: 2017-09-25 13:38:29
INFO set last status change date to: 2020-01-24 15:40:08
INFO Output channels will not deliver anything. (1)
INFO Set check status to [2] ([CRITICAL]) (2)
INFO Processing action 'Check Action for AgentAlives'. (3)
INFO ----------------------------------- MESSAGE  -----------------------------------
INFO Action 'Check Action for AgentAlives' applied to 'AGENTALIVE'.

INFO Message is: (4)
INFO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
INFO Last message from Avantra Agent is at least 5:23:00 ([h]:mm:ss) old
INFO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

INFO No resolver set.
INFO No filter list set.
INFO Delivery is suppressed.
INFO Channel 'Output Channel: Log to notifier_action.log'
INFO Generated notification message was suppressed.
1 The actual writing of the output is suppressed for testing purposes unless you clear the Suppress Output Channel Delivery flag.
2 The real check status is overridden by the value we defined in Test Check Status (i.e. Critical).
3 The name of the processed Notification Action
4 The check message as processed.
Example 3. Test Action as if AgentAlive was Critical with periodic resending

Now we repeat the test as if we would try to resend the Notification after a certain period of time. Thus we have to provide values in the following fields:

Notification Number

2

Evaluation Date

now

Last Notification Date

10 minutes in the passt

Last Status Change Date

15 minutes in the past

After pushing the bnt[Test] button the following result is shown:

INFO set evaluation time to: Mon Sep 25 13:46:00 CEST 2017. this timestamp.
INFO Mode: RTM Check.
INFO Load last check result:
Last message from Avantra Agent is at least 5:37:00 ([h]:mm:ss) old
INFO set last check date to: 2017-09-25 13:31:00
INFO set last status change date to: 2017-09-25 13:31:00
INFO Set check status to [2] ([CRITICAL])
INFO Processing action 'Check Action for AgentAlives'.
INFO Resend is not active on this action. Therefore notification number '2' can not be applied.

As you can see in the very last line, there was no resending defined for the action. So the selected Check is not being processed.

Example 4. Defining an Action with Service Hours

We modify the Notification Action used in the examples above and include a Service Hours record (see also Defining Service Hours).

  1. Select Configuration  Notifications from the top-level menu. Select the Actions tab. Open the desired Notification Action.

  2. Choose a value for Service Hours.

  3. Push the Save button.

In our example we choose the Service Hours record Office Hours.

Now we proceed to Test and provide the following values:

Notification Number

1

Evaluation Date

22:10

Last Status Change Date

22:05

As you can expect, this Check is also not going to be processed:

INFO set evaluation time to: Mon Sep 25 22:10:00 CEST 2017. Service hours do not cover this timestamp.

Testing Actions for CCMS Alerts and Changes

Due to the more simple nature of CCMS Alerts and Changes in comparison with Checks, the testing facilities for the corresponding Notification Actions are simpler as well. The available options are self-explaining once you have understood the variant for Checks.

Getting Action Results

As you can see in Notification Action is pretty helpful. The same output is available once the Notification Action made active.

In order to process the recently defined Notification Action productively, we first have to set the Active flag.

  1. Select Configuration  Notifications from the top-level menu. Select the Actions tab. Open the desired Notification Action.

  2. Push the Activate button.

Once a Check matches the trigger criteria of the defined Notification Action, the Notification Message is generated and stored in the Avantra Database.

It can be viewed at three different locations:

From the Notification Action perspective
  1. Select Configuration  Notifications from the top-level menu.

  2. Select the Messages tab.

From Check perspective

See Working with RealTime Monitoring Results and Working with Daily Checks:

For a RealTime Monitoring Check
  1. Proceed to a Check list, for example, select Monitoring  RTM Check List, adjust your filter, if required, and choose the desired item from the list.

  2. Push the Open button and proceed to the Notification Messages tab.

For a Daily Check
  1. Select Monitoring  Daily Checks, adjust your filter, if required, push the Open button and proceed to the Notification Messages tab.

For a Daily Check Detail
  1. Select Monitoring  Daily Checks, adjust your filter, if required.

  2. Select the desired Daily Check Detail from the list and push the Notification Messages… button.

From a global perspective
  1. Select Configuration  Notifications from the top-level menu.

  2. Select the Messages tab.

Besides the Notification Element information, you can see the processing date of the Notification Action, the Notification Action status, and the Notification reason. For a more detailed view, double-click on the item.

In the Log field you see most of the details you already have seen during testing. Other information include the Notification Number, the Ntf.-Reason, and the First Attempt Date. More information is contained in the following sections.

There is a Test button on the Notification Messages tab in order to quickly run a test based on a given Notification Action result.

Defining Filter Lists

The option to use Check and Change selectors as well as Service Hours in Notification Actions directly reduces the need to define Filter Lists tremendously. Even more, the usage of selectors provides a tremendous performance improvement.

Filter Lists are available for Check and CCMS Alert Notification Actions.

Avantra offers advanced filtering options for Notifications. A filter can be either certain Service Hours (in other words the definition of some time periods), or Service Hours combined with a filter expression.

The option to build Filters only on Service Hours is first of all provided for backward compatibility. You are encouraged to define Service Hours directly on the corresponding Notification Action instead.

A Filter List is a list consisting of one or multiple filters. In this context they are also called Filter List Entries.

Filters are meant to be "positive", i.e. you define exactly which Notifications are supposed to "pass" the filter. If there are multiple filters defined in a Filter List, the list is processed until a filter is found that permits the Notification to "pass".

Only if no such filter is found the Notification is "blocked". In other words, multiple Filter List Entries are combined by a Boolean OR operator. Filter Lists are processed in the order of their definition, i.e. the top-most one of the list is processed first.

The reason why these OR-combined expressions are represented by an ordered list is because the Service Hours mentioned above can be defined overlapping.

There are the following options available for Filters:

Simple Filter Lists

It is possible to restrict passing Notifications to certain Customers, System Roles, Checks, check status, Notification numbers, or a combination of these using simple select boxes. See Defining Simple Filter Lists.

Advanced Filter Lists

In addition to the Simple Filter List you can define virtually any expression in an Expression Editor to define which Notifications to pass. See Defining Advanced Filter Lists.

If you are working with Filter Lists and Output Channels and you are working with Macros, you will find a button Convert to FTL that allows you to convert them into Interpolations.

Defining Simple Filter Lists

Perform the following steps in order to create a Simple Filter List:

Simple Filter Lists are useful in conjunction with Notifications for CCMS Alerts.

If you notify Checks, almost any function of the simple Filter List can be implemented by means of a selector, which is the far better choice from a performance perspective. However, see the end of this section for a general discussion about Filters and Selectors.

Procedure: Defining Simple Filter Lists
  1. Choose one of the following options:

    Creating a Simple Filter List from scratch
    1. Fill in a Name and optionally a Description. The name of the Filter List has to be unique. If you do not want the Filter List to be active immediately, clear the Active flag.

    2. Press the Next button.

    3. Fill in a Name for the Filter List Entry and choose a value for Service Hours and push the Next.

      Unless you are sure you need multiple Filter List Entries, you most likely want to choose the 7 x 24 hoursService Hours.

    Adding a Simple Filter List Entry to an existing Filter List
    1. Select Configuration  Notifications from the top-level menu. Select the Filter Lists tab.

    2. Choose the appropriate Filter List

    3. Push the New … button in the Entries section.

    4. Fill in a Name and choose a Service Hours record. Press the Next button.

  2. Select appropriate values for at least one of the following lists: Customer, System Role, Monitored System, Check, Check Status. Push the Next button.

  3. You may also choose an Escalation Type, i.e. define the number(s) or number ranges of Notifications you want to pass. Select the appropriate item from the check boxes and fill in values in the field Notification Number(s).

    Escalation only works for Notification Actions having resending defined, i.e. in Notification Actions for RealTime Monitoring Checks.

  4. Push the Finish button.

Example 5. Simple Filter List

Consider you have defined one or more CCMS Custom Checks and chosen to report the CCMS Alerts to Avantra. If you only want to notify these CCMS Alerts for e.g. dedicated Customers or System Roles, a Simple Filter is a good choice.

Defining Advanced Filter Lists

We provide a slightly more complex example that cannot be accomplished with a Simple Filter List. Assume you want to forward RealTime Monitoring Check Notifications for every Critical Check Result, but only once. And you have a couple of Checks you consider important for immediate Notification. And the remaining Checks you want only be forwarded if they stay in Critical status for more than 15 minutes. In this case you need an Advanced Filter List:

Example 6. Example for a complex Filter expression
(
  InList('${check.name}','AgentConnect','RFCCONNECT','SystemAlive',
    'PI_CONNECT', 'J2EECONNECT','TREX Connect','DBCONNECT',
    'WD_Connect','AGENTALIVE')

  and
    ${notification.number}==1
)
or
(
  (
    not InList('${check.name}','AgentConnect','RFCCONNECT','SystemAlive',
            'PI_CONNECT','J2EECONNECT','TREX Connect','DBCONNECT','WD_Connect',
            'AGENTALIVE')
    )
    and ${check.statusAgeInSeconds}>900
    and ${notification.lastCheck.status}!=${check.status}
)

The meaning of this expression is:

For a formal description of the Advanced Filter syntax see Reference: Advanced Filter Syntax.

Advanced Filters can be created by converting them from Simple Filters:

Procedure: Defining Advanced Filter Lists
  1. Create a Simple Filter List as described in Procedure: Defining Simple Filter Lists.

  2. Open the newly created Filter List Entry and push the Convert button. Push Yes on the pop-up.

  3. Open the converted Filter List Entry.

  4. Modify your expression. There is a Content Assist available hitting Ctrl-Space.

    The editor verifies your expression on the fly.

  5. Push the Save button.

Converting an Advanced Filter into a Simple Filter is not possible.

Example 7. Example for an Advanced Filter Entry

We implement the Filter outlined in Example for a complex Filter expression.

  1. Create a Simple Filter List as described in Procedure: Defining Simple Filter Lists.

    Flag the following Checks:

    Select filtering of a single Notification and enter 1 in the filed Notification Number.

  2. Open the newly created Filter List Entry and push the Convert button. Push Yes on the pop-up.

  3. Open the converted Filter List Entry. It should look like:

    InList('${check.name}','AgentConnect','RFCCONNECT','SystemAlive','PI_CONNECT',
      'J2EECONNECT','TREX Connect','DBCONNECT','WD_Connect','AGENTALIVE')
    
      and
      ${notification.number}==1
  4. Extend the expression as shown in Example for a complex Filter expression and push the Save button.

Include the recently created Filter List in a Notification Action that selects e.g. all Critical RealTime Monitoring Checks, notifies all Critical check status, and resends every 10 minutes Critical check status.

You may use the testing facility to verify your filter.

Reference: Advanced Filter Syntax

The following list describes the elements available in an Advanced Filter expression:

  • The filter should be surrounded by brackets ().

  • The filter may contain any of the provided Interpolations.

  • Macros of type String must be quoted by use of the single quote '.

  • Any other string used in comparison or in the InList or in the Like function must be quoted as well.

  • A filter can be created by logically grouping conditional expressions. The following conditional operators are available: and, or, not.

  • The most simple conditional expressions are:

    • The number 0. This expression is always false.

    • Any positive or negative number. This expression is always true.

    • The empty string ''. This expression is always false.

    • Any other string. This expression is always true.

  • A string expression has the format string <op> string with <op> one of the operators

    • lt : string-wise less than

    • gt : string-wise greater than

    • le : string-wise less than or equal

    • ge : string-wise greater than or equal

    • eq : string-wise equal

    • ne : string-wise not equal

  • A conditional numerical expression has the format number <op> number _ with _<op> one of the operators

    • < : numerically less than

    • > : numerically greater than

    • : numerically less than or equal

    • >= : numerically greater than or equal

    • == : numerically equal

    • != : numerically not equal

  • For strings as well as numbers, there is a InList function with syntax: InList(<macro>, <item 1 >, …​, <item n >). This expression evaluates true if the <macro> is equal to one of the list items from <item 1 > to <item n >

  • For strings there is a Like function with syntax Like(<macro>, <pattern>) where <pattern> is a string that may contain the wildcards ? and *. This expression evaluates true if the <macro> matches the <pattern>. Matching is performed always at the beginning and the end of the string, so you may want to use * at the beginning and/or end of the <pattern> for in-string matches.

  • Basic arithmetic expressions can be used as well within filters. The arithmetic operators comprise +, -, *, /, % (the modulus operator).

Using Global Expressions

Global Expressions are available to re-use certain parts of a Filter. Assume you have a certain expression you use in many of your Filters. Whenever you need to change this expression, you have to adapt all Filters. But you can also define the common parts in a Global Expressions and include this one in your Filters.

Procedure: Define a Global Expression
  1. Select Configuration  Notifications from the top-level menu. Select the Global Expressions tab. Push the New button.

  2. Fill in a Name.

  3. Fill in an expression.

  4. Push the Create button.

If you create a Global Expressions with name globalExpression, you would reference it as <@globalExpression />. (If you have defined the Global Expression in the previous version of Avantra already, you can still reference it as %%globalExpression%%. However, this syntax is deprecated.)

Example 8. Using Global Expressions

If you define a Global Expressions isImportantCheck with value

InList('${check.name}','AgentConnect','RFCCONNECT','SystemAlive','PI_CONNECT',
                    'J2EECONNECT','TREX Connect','DBCONNECT','WD_Connect','AGENTALIVE')

and a Global Expressions firstNotificationAfter15Minutes with value

(${check.statusAgeInSeconds}>900 and ${notification.lastCheck.status}!=${check.status})
(<@isImportantCheck /> and ${notification.number}==1)
    or
(not <@isImportantCheck /> and <@firstNotificationAfter15Minutes />)

Defining a Resolver

As we have already seen you can use all the provided Interpolations to format the data you use in Output Channels. But what if the provided data is not sufficient to connect to, for example, your third-party monitoring systems? One of the most common "problems" is that other monitoring applications do use other numerical or string representations for the severity of an issue than Avantra does. Avantra maps the numerical severity values from -2 to 2 to the string values Disabled, Unknown, Ok, Warning, Critical.

In order to cope with these kind of things easily, Avantra provides the so-called Resolver. A Resolver can replace the values of some standard Interpolations or add new Interpolations for use in Output Channels and Filter expressions.

Avantra provides two kinds of (Custom) Resolvers:

Simple Resolver

A simple Resolver allows to replace the values of the check status directly with values different from Disabled, Unknown, Ok, Warning, Critical. In addition, it allows to replace newline characters easily with a different value which is a convenient way to fit, for example, values of Interpolations having line breaks into a single log entry.

Resolver with Executable

In a Resolver with Executable you can provide your own program or script that adds new variables.

Defining a Simple Resolver

Perform the following steps in order to define a simple Resolver:

Procedure: Defining a Simple Resolver
  1. Select Configuration  Notifications from the top-level menu. Select the Resolvers tab.

  2. Select New  Resolver….

  3. Fill in a Name and optionally a Description.

  4. Choose Simple Resolver and push the Next button.

  5. If you want to replace newlines, fill in a value for Replace `Newline´.

    The following keywords are available in addition to any other character: [blank] for a space, [tab] for a tabulator, and [newline] for a newline itself.

  6. If you want to replace any of the standard check status strings, fill in values into the fields Replace `Disabled´, Replace `Unknown´, Replace `Ok´, Replace `Warning´, Replace `Critical´.

  7. Push the Finish button.

Defining Resolver with Executables

We first describe how to create a Resolver with Executable. However, we urgently recommend to work through Resolvers.

Procedure: Defining Resolver with Executables
  1. Select Configuration  Notifications from the top-level menu. Select the Resolvers tab.

  2. Select New  Resolver….

  3. Fill in a Name and optionally a Description.

  4. Choose Resolver with Executable and push the Next button.

  5. Fill in the Command Line.

    You can include any of the available Interpolations in this field. Simply click and select the appropriate one from the list.

    You may fill in a Working Directory and a Execution Timeout.

  6. For every new Interpolation the executable defines perform the following steps:

    1. Push the + button.

    2. Fill in the Interpolation name and select the appropriate data type.

    3. Push the Add button.

    4. Repeat the steps for all new Interpolations.

  7. Push the Finish button.

In order to reference the newly defined Interpolations in a Filter List or an Output Channels, you need to add the object name resolver, i.e. if you have added the Interpolation myText, you have to use it as ${resolver.myText} in an advanced Filter List or an Output Channel.

You will still be able to reference a newly created Interpolation myText as %%myText%%. However, this syntax is deprecated und you are strongly discouraged to do so.

In the old syntax, it was possible to override existing Macros. If your executable returned

CHECK_STATUS_STRING = FATAL

this value replaced the original value of the Macro.

While this is still possible with Avantra 20.5, it is as well deprecated and you are strongly discouraged to do so.

If you want to use the same Interpolation in a Filter or an Output Channel for Notification Actions with and without a Resolver, or you want to return new Interpolations in some cases only, make use of a Global Expressions:

Define a Global Expressions checkStatusString like:

<#if resolver.checkStatusString??>
${resolver.checkStatusString}
<#else>
${check.statusString}
</#if>

and use it as <@ checkStatusString />.

Example 9. Example for a Resolver with Executable

In production environments, things are probably more complicated. Assume you have a third-party monitoring system that uses a more fine-grained severity, a string severity FATAL if, for example, the important Checks AGENTALIVE and SystemAlive are Critical in Avantra.

In order to achieve this, you need a custom executable or a custom script that adds new Interpolations depending on the condition mentioned above. As an example, we use a script that writes the following output

checkStatusString = FATAL
text = Check Status increased by custom resolver

in case one of the Checks mentioned above is Critical, and

checkStatusString = [the original value]
text = Check Status as provided by {avantra}

otherwise.

The following perl script may be used to achieve the requested results if it is called with ${check.statusString} and ${check.name} as arguments:

#!/usr/bin/perl
#
# Usage: check_status_resolver.pl ${check.statusString} "${check.name}"
#
# This script is called with the numeric check status provided
# by {avantra} and the check name.
# If the check name represents one of our <important> checks, and
# the ${check.statusString} is CRITICAL in {avantra} we
# return a new status with value set to 'FATAL'
#
# We also provide a modification.Text that indicates if we have
# changed any value or if it comes from {avantra} originally

use strict;
use English;

use constant MESSAGE_UNMODIFIED =>
'Check Status as provided by {avantra}';
use constant MESSAGE_MODIFIED =>
'Check Status increased by custom resolver';

# These are considered the most important checks:
my %importantChecks =
map { $_ => 1 } qw(AGENTALIVE SystemAlive);

my ($outputCheckStatusString, $outputResolverModification);

# Get the command line arguments and verify
my ($inputCheckStatusString, $inputCheckName) = @ARGV[0,1];
unless (defined $inputCheckStatusString and defined $inputCheckName) {
    print STDERR "Insufficient arguments\n";
    exit 1;
}

if ($inputCheckStatusString eq 'CRITICAL' and $importantChecks{$inputCheckName} ) {
    $outputCheckStatusString = 'FATAL';
    $outputResolverModification = MESSAGE_MODIFIED;
} else {
    $outputCheckStatusString = $inputCheckStatusString;
    $outputResolverModification = MESSAGE_UNMODIFIED;
}

print "checkStatusString = $outputCheckStatusString\n";
print "text = $outputResolverModification\n";
exit 0;

We create a Write into a log file Output Channel, the Resolver mentioned above and a Notification Action sending RealTime Monitoring Checks while using those two objects:

"Write to notifier_action.log" Output Channel
Name

Log to notifier_action.log

Support Action Types

Checks

File Name

notifier_action.log

Line Format

${notification.date}: Status [${resolver.checkStatusString}] for [${system.name} [${check.name}]]: ${check.result} [Note: ${resolver.text}]

"Increase Severity for important Checks" Resolver
Name

Increase Severity for important Checks

Macros
Name

checkStatusString

Type

String

Name

text

Type

String

Command Line

perl check_status_resolver.pl ${check.statusString} "${resolver.text}"

Working Directory

/syslink/resolver

"Log WARNING and CRITICAL RTM" Notification Action
Name

Log WARNING and CRITICAL RTM

Define specific 'Ad-Hoc' Custom Selection
Check Selector Type

RTM Checks

Check Search Criteria

Select check status Critical and Warning

Service Hours

7 x 24 hours

Notification Status

CRITICAL, WARNING

Output Channel

Write to notifier_action.log

Custom Resolver

Increase Severity for important Checks

We will run the Test using the following values:

Monitored System:

PIP

Check:

`SystemAlive [RTM] `

Suppress Output Channel Delivery:

cleared

Check Status:

CRITICAL

The output will be like:

INFO Mode: RTM Check.
INFO Load last check result:
Database server is paragon
DBCONNECT check is OK for PIP
Central instance is paragon_PIP_00
ABAP central services instance is paragon_PIP_01
J2EE central services instance is paragon_PIP_02
RFCCONNECT check is OK for paragon_PIP_00
J2EECONNECT check is OK for paragon_PIP_00
ASCS_MSGSRV check is OK for paragon_PIP_01
SCS_MSGSRV check is OK for paragon_PIP_02
INFO set last check date to: 2017-10-06 07:06:57
INFO set last status change date to: 2017-10-03 11:28:55
INFO Set check status to [2] ([CRITICAL])
INFO Processing action 'Log WARNING and CRITICAL RTM'.
INFO ----------------------------------- MESSAGE  -----------------------------------
INFO Action 'Log WARNING and CRITICAL RTM' applied to 'SystemAlive'.

INFO Message is:
INFO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
INFO Database server is paragon
DBCONNECT check is OK for PIP
Central instance is paragon_PIP_00
ABAP central services instance is paragon_PIP_01
J2EE central services instance is paragon_PIP_02
RFCCONNECT check is OK for paragon_PIP_00
J2EECONNECT check is OK for paragon_PIP_00
ASCS_MSGSRV check is OK for paragon_PIP_01
SCS_MSGSRV check is OK for paragon_PIP_02
INFO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

INFO Resolver 'Increase Severity for important Checks'.
INFO Executing command line: '[perl, check_status_resolver.pl, CRITICAL, "Check Status as provided by {avantra}"]'.
INFO Adding custom variable [%%checkStatusString%%] with value [CRITICAL]
INFO Adding custom variable [%%text%%] with value [Check Status as provided by {avantra}]
INFO No filter list set.
INFO Initial -> Scheduled: Enqueue message
INFO ----------------------- Run Output Channel, Attempt # 1  -----------------------
INFO Resolving following variables:
INFO OC ['Write to notifier_action.log']: logged 480 characters to file [/syslink/master/log/notifier/notifier_action.log].
INFO Scheduled -> OkSent: OC 'Write to notifier_action.log': Successfully sent!

And the output in `notifier`action.log_:

2017-10-06 07:07:16+0200: Status [CRITICAL] for [PIP [SystemAlive]]: Database server is paragon
DBCONNECT check is OK for PIP
Central instance is paragon_PIP_00
ABAP central services instance is paragon_PIP_01
J2EE central services instance is paragon_PIP_02
RFCCONNECT check is OK for paragon_PIP_00
J2EECONNECT check is OK for paragon_PIP_00
ASCS_MSGSRV check is OK for paragon_PIP_01
SCS_MSGSRV check is OK for paragon_PIP_02 [Note: Check Status as provided by {avantra}]

Works as expected.

Please review any Filter List eventually included in a Notification Action that also includes a Resolver. If add values you will probably need to adapt your Filter Lists.

Converting an Action into a confirming Action

There is one final feature of Avantra Notifications we have not yet covered. Notification Actions can be used to confirm RealTime Monitoring and Daily Checks.

It is not possible to confirm a single Daily Check detail, a Change or a CCMS Alert.

There are a few important things to note about confirming Notification Actions:

Do not let the Notification Action confirm if the Notification Action itself is triggered by a Check Confirmation!

In order to make an existing Notification Action a confirming Notification Action, proceed as follows:

  1. Select the Notification Action in question and open it. Unless you have defined an Notification Action operating only on Daily Check details there is a Confirm RTM/Daily Check: radio button.

  2. Select Confirm on successful output channel message in case you want the Notification Action to confirm if one of the defined Output Channel succeeds

  3. You may define a Confirmation Timeout. If so, the Check will automatically be unconfirmed after the timeout has passed. or if the check status changes.

    If you leave the field blank the Check is confirmed until the check status changes.

    This works for RealTime Monitoring Checks only.

  4. Push the Save button in order to finish.

Defining Notifications [Customer]

To create an all-in-one Notification Action perform the following steps:

Procedure: Create an all-in-one Action
    • If you are in the role of a Customer: Choose Configuration  Notifications

    • If you are in the role of a Service Provider: Choose Configuration  Notifications  Notifications [Customer]

  1. Create an Notification Action as defined in Defining Actions.

  2. Switch to the Channels tab and define one or more Output Channels according to the description in Defining Output Channels.

  3. If desired, switch to the Filter tab and define one or more Filter Lists according to Defining Filter Lists.

  4. If desired, switch to the Resolver tab and define a Resolver according to Defining a Resolver.

  5. Switch to the Test tab and test the Notification Action according to Testing Check Actions.

Disabling Notifications

There are several ways to disable Notifications:

Disable all Notifications

Choose Configuration  Notifications and push the Disable Notifier switch.

Users can disable the personal Notifications
  1. Choose User Settings from the header.

  2. Set the Disable Notifications flag and push OK to save the setting.

Or you can disable Notifications for particular Checks
For a RealTime Monitoring Check
  1. Proceed to a Check list, e.g. select Monitoring  RTM Check List, adjust your filter, if required, and choose the desired item from the list.

  2. Select More  Notifications  Disable Notifications.

For Checks from a System perspective or from a Parameter Set

Follow the procedure described in Disabling and Enabling Checks, but with the Check Notification tab instead of the Check Execution tab.

You can also disable Notifications using a Maintenance Window

Follow the Procedure: Defining a Maintenance Window and choose for During maintenance: the value leave monitoring ON.

Predefined Notification Templates

If Avantra is installed the very first time on a new system, some predefined Notification Actions and Output Channels are automatically created. The predefined Notification Actions and Output Channels might help you to create your own notification rules. The names of the predefined Notification Actions and Output Channels start with TEMPLATE. You can copy, and or modify the predefined Notification Actions and Output Channels to your needs. If you delete them, Avantra does not recreate them again. The predefined Notification Actions and Output Channels are not active after a fresh installation.

Table 2. List of predefined notification actions

Notification Action name

Type

Usage

TEMPLATE Avantra License

Notify of license notification of the Avantra server. Alarm x days before.

TEMPLATE Critical system health

RTM

Raise an event in case of critical checks status

TEMPLATE Critical Checks

RTM

Raise an event in case of checks turning to CRITICAL

TEMPLATE Backup critical events

RTM,Daily Check

Raise event in case of backup problems

Table 3. List of predefined output channels

Output Channel name

Description

TEMPLATE Email to administrators for Avantra server events

SMTP Servers and Administrator’s email should be modified appropriately.

TEMPLATE Email to administrators for Changes

SMTP Servers and Administrator’s email should be modified appropriately.

TEMPLATE Email to administrators for Check notification

SMTP Servers and Administrator’s email should be modified appropriately.

Recommendations and Remarks

This section contains some remarks and recommendations you should consider while defining Notification Actions. Most of them are implied by performance consideration.

Be as specific as possible while defining trigger criteria

The more specific you define the Notification Actions properties (first of all by using selectors, but also defining Notification Reason, Status, Resending, etc.) the less is the number of processed Notification Elements, and the better is the overall performance of this Notification Action.

It is much more efficient to trigger Notification Actions only for e.g. Critical and Warning Check states instead of trigger Ok Checks also and define a filter that blocks all Ok Notifications again.

Do you really need Notifications for Ok check status?

Especially in large scale environments you should consider carefully if you really need to notify Ok check status. Usually the vast majority of your Checks will be in Ok state. Thus processing Ok messages — first of all when it comes to resending — may be expensive in terms of processing time.

Keep Resolver executables small and fast

If you use a custom executable or script in a Resolver make sure it terminates quickly again. Please note that this custom executable is called for every Check processed by the Notification Action the resolver is linked to. Resolvers running multiple seconds (e.g. while picking some bits and pieces from your enterprise data warehouse) will spoil your Notification process!

Consider using signal handlers (on Unix-like operating systems) if your executable has the slightest chance to hang for whatever reason.

Keep external command Output Channels small and fast

This is for the same reason as outlined in the previous paragraph.

Use proper exit states for external commands

In custom resolver executables and external command Output Channels use exit state 0 to indicate the program ran successfully. Use an exit state different from 0 in case of a problem.