Alerts and Activity Log Notifications

On this page

Overview

Activity Log Notifications (also known as Notifications or Alerts) let Org admins configure alert routing for specific event types within their Organizations. You must have Org admin permissions for managing alerts.

April 2024 Release

  • In the February 2024 Release, a patch update has temporarily disabled all Snaplex node cpu load avg alert notifications, which prevented Scheduled Tasks from starting.

  • All the existing Snaplex node cpu load avg notifications are now enabled. This issue was fixed after the Snaplex Mandatory Automatic Upgrade, completed on Saturday, Mar 16, 2024.

 

Support for Notifications through Slack

SnapLogic supports the Slack messaging app within the SnapLogic platform communications, enabling you as an Org admin to add Slack channels and recipients for your SnapLogic communications. For details on adding Slack communications to your Org, see SnapLogic Notifications through Slack.

You can create notifications that notify users based on the following events.

  • ACL: Changes to Asset Control List (ACL) for a project.

  • API: Threshold violation for API usage.

  • Asset: Changes to assets.

  • Dist: Changes in the distribution version of Snaplex instances.

  • Group: Changes to groups (creation, deletion, and update).

  • Session: Session start and end times for users.

  • Snaplex: Alerts to changes in Snaplex state, size or condition

  • Snaplex Node: Threshold violations for performance.

  • Task: Threshold violations for performance and reliability.

  • User: Changes to SnapLogic login credentials and access.

Managing Notifications

As an Org admin, you can create notification rules, view and delete notifications, and use them to track Snaplex congestion.

Creating Notification Rules

  1. Navigate to SnapLogic Manager > Settings, scroll down the page to Alerts/Activity Log Notifications, and click Settings.




  2. In the Settings > Notifications page, click Create Notification to display the Create Notification Rule dialog.

  3. In the Create Notification Rule dialog, click Event Type to display the drop-down list:

    create-notification.png


    Refer to Event Type Parameters for a list of the Event Types and associated fields.

  4. Select the target Event Type and enter information for the displayed fields. 

    • For notification recipients, enter the recipient's email address or Slack channel. To send a direct message, enter the Slack username. 

    • For specific parameters for each event type, see the Event Type Parameters.

  5. Click Save to exit.

You can go to Settings > Notifications to validate that your notification is created. 

Viewing Alert Information

  1. Log in to SnapLogic and click the Manager tab.
    The Organization Settings page appears to display the Settings controls.

  2. In the left pane, click Alerts to display All the alerts in an Org.

  3. To filter the Open and Closed alerts, click the corresponding tabs.

  4. Enter the target Start and End dates to filter the alerts by time period.

  5. (Optional) Click the download icon () to download as a CSV file.

Updating Notifications

  1. Navigate to SnapLogic Manager > Settings, scroll down the page to Alerts/Activity Log Notifications and click Settings.




  2. In the Settings > Notifications page, click any notification to display the Edit Notification Rule dialog:

  3. Edit the notification as required and click Save.


    You can make the following changes:

    • Event Type. Change to any event type.

    • Projects to notify. Select target project folders

    • Email. Add or remove email addresses.

    • Slack Recipients. Add or remove Slack channels and usernames.

Deleting a Notification

  1. Log in to SnapLogic and click the Manager tab. The Organization Settings page appears to display the Settings controls.

  2. Scroll down the page to Alerts/Activity Log Notifications and click Settings.
    The Settings > Notifications page displays the list of alerts.

  3. Click the Delete Notification icon () next to the alert that you want to delete. The alert disappears from the list.

Use Alerts to Track Snaplex Congestion

Snaplex alerts are generated in the following scenarios:

  • One or more Pipelines are in the Queued state on a Snaplex for more than:

    • the 75% of their respective Time To Live (TTL), or

    • the maximum time that SnapLogic attempts to execute a Pipeline.

    At most, one alert is generated per Snaplex regardless of the number of Pipelines over the threshold. The default Pipeline TTL is 5 minutes.

  • The daily API usage exceeds 75% of the limit.

  • The concurrent API usage exceeds 75% of the limit.

You must always investigate the cause of a Snaplex congestion Alert. Frequently queuing Alerts indicate that he Snaplex needs more capacity or the running Pipelines need a redesign.

Open Alerts

A scheduled job runs every 5 minutes to monitor the queued Pipelines. If it detects any Pipeline above 75% of the TTL threshold at that instant, it generates an Open Alert. However, if an Open Alert already exists for that Snaplex, a new Alert is not generated. The previous Open Alert remains in the same state. 

After generating an Open Alert, the scheduled job repeats, monitoring the Pipelines that have been queued for more than 75% of their respective TTLs. If there are no Pipelines above the threshold for that Snaplex, the Alert is resolved and its state changes to Closed. 

Event Type Parameters

Use the following table to understand the event types and corresponding parameters for creating notification rules in different scenarios.

Snaplex Node Notification Threshold Watermarks

You can adjust the behavior of the alerting system with threshold watermarks. In some scenarios, an alert is set against a CPU, memory, or disk resource that is overutilized but not directly by Pipeline executions. For example, a disk alert might be triggered by accumulative files in a /temp directory mounted on the Snaplex node; in this case, the Org admin would put the Snaplex in maintenance mode, and DevOps might clear the space in the directory. Threshold watermarks enhance the reporting accuracy of Snaplex node alerts and can be used to reduce the frequency of alerts.

For memory and CPU usage, the alert is removed when the usage falls below the lower watermark, which is 40% below the threshold by default. For example, If you have set a threshold of 80% for memory usage, and there is an alert addressed by a user action, then the alert is removed from the Dashboard when the memory goes below 0.4 * 80 = 32%. Similarly, the high watermark for disk alerts is 40% above the threshold. So if the free space on the disk extends beyond 40% of the threshold, the alert is removed.


You can configure the following threshold watermarks by enabling a feature flag for your Org.

  • com.snaplogic.cc.service.UsageMonitorServiceImpl.LOW_WATERMARK = 0.4

  • com.snaplogic.cc.service.UsageMonitorServiceImpl.HIGH_WATERMARK = 1.04

Enabling the Threshold Watermark Feature Flag

  1. Obtain your Org ID by navigating to Manager > Settings. You can find your Org ID below Organization Id at the top of the Settings page. Alternatively, you can run the following API call: 
    https://elastic.snaplogic.com/api/1/rest/asset/<org_name>
    The API call requires authentication. In the returned response, the Org Id is the value to the org_snode_id key.

  2. Check to see if you have any feature flags already set for your Org.

     

    1. Make the following request from a browser:

      https://elastic.snaplogic.com/api/1/rest/admin/snappack/org-dist/<org_snode_id>

      Sample Response

      { "response_map": { "overrides": {}, "_id": "52e99318640a9a03d8681d0d", "flag_overrides": { <Existing_feature_flag> }, "dist_id": "latest" }, "http_status_code": 200 }

      Where <Existing_feature_flags> are the feature flags that are already enabled in the Org.

    2. Make note of any existing feature flags for Step 3.

  3. Apply the following feature flag to a specific Org, appending any existing feature flags from Step 2.

    "com.snaplogic.cc.service.UsageMonitorServiceImpl.LOW_WATERMARK = 0.4" "com.snaplogic.cc.service.UsageMonitorServiceImpl.HIGH_WATERMARK = 1.04"

    Where:

    • The org_admin_username is the username of the Org admin.

    • The org_snode_id value is the Org ID (for example: 52e44318640a9a03d8681d0d).

    • <Existing_feature_flag> indicates any existing feature flags from Step 2a.

  4. To verify that the threshold watermark feature flag is enabled for a specific Org, make the following request in a browser:

    Request

  5. Navigate to the Dashboard to monitor the resource utilization of your Snaplex nodes against the alert reporting.


To verify that the threshold watermarks are enabled for a specific Org, make the following request in a browser:

https://elastic.snaplogic.com/api/1/rest/admin/snappack/org-dist/<org_snode_id>