SQL Monitor 9

Setting up Webhook notifications (Preview)

About Webhook notifications

You can set up SQL Monitor to push alert notifications to a Webhook URL of your choosing. 

Webhook notification messages are sent whenever any alert begins, escalates, deescalates, or ends.

Configuring Webhook notifications

Go to the Configuration tab. Under Alerts and Metrics, select Notification settings:

Configuring SQL Monitor to send Webhook notifications:

  1. Choose when SQL Monitor should send messages to your Webhook.
  2. Enter the Webhook URL into the URL box.
  3. Click "Send Test Notification" to check SQL Monitor can send messages to your Webhook.
  4. If you are using a proxy, please Proxy configuration at the end of this document.

Webhook Specification

  • This feature is in preview. Please send suggestions to feedback.
  • Webhook notification messages are sent after 20 seconds after the alert has been received.
  • If the message fails to be delivered, a second attempt will take place after 10 minutes.
  • Webhook messages are all predefined json payloads with the following content defined:

Field Definition

Field NameValue Description
messageTypeType of message - all alert notification messages will have the value of "AlertNotification".
idInteger - Unique ID per alert.
nameName of the type of alert - for example: "Long-running query"
descriptionDescription of the alert - for example: "A SQL query runs for longer than a specified duration."
eventDateTimeDate/time of the event -  ISO 8601 (UTC) for example: "2019-11-28T14:20:29.563Z"
statusChangeOne of the following values:
  • Raised - the event has started.
  • Escalated - the event severity has increased.
  • Deescalated - the event severity has decreased.
  • Ended - the event has come to an end.
severity

One of the following values:

  • None - Indicates that the event has come to an end.
  • Low - The severity is low.
  • Medium - The severity is medium.
  • High - The severity is High.
previousSeverity

One of the following values:

  • None - Indicates that the event has begun.
  • Low - The severity was low.
  • Medium - The severity was medium.
  • High - The severity was High.
monitoredEntity.cir

Internal path representation for the monitored entity in question. For example:

"Root[].[Cluster][[Name]=localhost].[SqlServer][[Name]=].[SqlProcess][[LoginTime]=28/11/2019 14:11:28;[SessionId]=59]"

represents a SqlProcess.

monitoredEntity.groupNameName of the SQL Monitor group within which the monitored entity is found. For example: "2 - Staging".
monitoredEntity.clusterNameName of the cluster. (If it exists for the given context.)
monitoredEntity.machineNameName of the machine. (if exists)
monitoredEntity.sqlInstance.nameName of the SQL Instance. (if exists)
monitoredEntity.sqlInstance.displayNameDisplay name of the SQL Instance. (if exists)
monitoredEntity.sqlInstance.AliasAliased name for the SQL Instance. (if exists)
monitoredEntity.azureSqlServerNameName of the Azure SQL Server. (if exists)
monitoredEntity.azureSqlDatabaseNameName of the Azure SQL Database. (if exists)
monitoredEntity.azureElasticPoolNameName of the Azure Elastic Pool. (if exists)
detailsUrlURL to the given alert's details page within SQL Monitor.

Sample Payload

{
  "messageType": "AlertNotification",
  "id": 1441792,
  "name": "Long-running query",
  "description": "A SQL query runs for longer than a specified duration.",
  "eventDateTime": "2019-11-28T14:20:29.563Z",
  "statusChange": "Raised",
  "severity": "Medium",
  "previousSeverity": "None",
  "monitoredEntity": {
    "cir": "Root[].[Cluster][[Name]=localhost].[SqlServer][[Name]=].[SqlProcess][[LoginTime]=28/11/2019 14:11:28;[SessionId]=59]",
    "groupName": "4 - Testing",
    "name": "localhost\\(local)",
    "machineName": "localhost",
    "sqlInstance": {
      "name": "",
      "displayName": "(local)"
    }
  },
  "detailsUrl": "http://sample.com:5000/show/alert/1441792?baseMonitorId=a3d6fc66-c5f0-468f-a510-2d793439ff74"
}

Proxy configuration

If using a proxy, you will need to configure SQL Monitor to use your proxy settings: 

  1. Go to the machine running the base monitor service.
  2. Navigate to %ProgramFiles%\Red Gate\SQL Monitor\BaseMonitor
  3. Open RedGate.SQLMonitor.Engine.Alerting.Base.Service.exe.config and insert your proxy settings within a system.net element within the configuration element. An example is shown below: 


    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
    	<!-- Other config elements... --> 
    	<system.net>
        	<defaultProxy>
    		    <proxy usesystemdefault="true" proxyaddress="http://192.168.1.10:8888" bypassonlocal="true" />
          		<bypasslist>
            		<add address="[a-z]+\.example\.com" />
          		</bypasslist>
        	</defaultProxy>
      	</system.net>
    </configuration>
  4. Save this file and restart the base monitor service.

Do you have any feedback on this documentation?

Let us know at sqlmonitorfeedback@red-gate.com


Didn't find what you were looking for?