...
...
Expand | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
|
Apica Alerts can be delivered to any service through a Custom Webhook Integration.
...
Note: For delivery to work, there needs to exist a receiving Webhook to handle the request.
Step | Screenshot |
---|---|
Add WebHook Target
| |
The Custom Webhook Target DialogThe detailed steps for filling in this dialog box have their own page, Adding a Custom Service Target. |
Adding a Custom Service Target
...
Tip |
---|
Note: Before starting, for Custom Webhook delivery to work, you need to have a working Webhook in your service. |
Step | Screenshot | ||
---|---|---|---|
Create a Custom Service Target by clicking the WebHook button | |||
A blank target is created | |||
Select the Service | |||
The Service section allows you to select the service type that we are going to send an alert to.
|
| ||
The following steps refer to the following Custom Service dialog | |||
Set a Target NameThe target name identifies the target in Synthetic Monitoring.
Required! This field is required in Apica Synthetic. The exact contents of the field may depend on the requirements of your service. | General - Service NameIn the Service Name section, you can provide the ID or name of the service that should receive the alerts. | ||
Add Target Details | |||
Set AuthenticationSet your Authentication, including | Global AuthenticationIn the Global Authentication section, you can choose and configure the type of authentication to use for alert delivery. | ||
Request HeadersDefine theHTTP Header Type and value pairs to attach to different request types. | |||
Request TypesSend the Service if the request is a Trigger, Resolution, Authentication, or a refreshed access token | T (Trigger): Trigger an alert. R (Resolve): Resolve an alert. A (Authenticate): Authenticate using the access token. F (Refresh): Request with refresh token for a new access token. | ||
Header ContentMultiple headers can be added by clicking the Add button | Name: The name of the header. Value: The value of the header. | ||
Response ParametersExample: A RESTful service has the Multiple parameters can be added by clicking the Add button | The Response Parameters section lets you define parameters in responses to store for use in future requests. XPath: The XPath for the parameter in the response. Example: Placeholder: A Webhook Placeholder to be replaced with the actual value. Example: Is Auth?: Indicates (1) if the parameter is used for authentication and (2) that the parameter has an expiration time. Any time the Alerter fails to authenticate, it will clean up all values for this parameter. | ||
Trigger Sequence | A procedure page on entering the Trigger Request Sequence configures the steps to begin a Webhook alert handling instance. | ||
Resolve Sequence | A procedure page on entering the Trigger Resolve Sequence configures the steps to begin a Webhook alert handling instance when the alert has been resolved. i.e. to notify when the situation has been corrected or the event has ended. | ||
(Done) Add Custom Webhook Target | When you are happy with all the settings, you can create the target. Click the Add Custom WebHook Target button |
Trigger Sequence
The Trigger Request Sequence
...
What service do you want to send a Webhook to?
What information do you want to send to that service?
Under what Severity condition do you want to send it?
Confirmation: Do you want to send HTTP requests to the application to see if it returns an expected response?
Do you want this to repeat? If so, under what conditions should it stop repeating?
...
Step | Screenshot | ||
---|---|---|---|
1. Define the Trigger URLWhat Webhook-enabled Trigger URL field is Apica going to use to trigger the alert? It will send one of the selected Methods to this URL.
| |||
2. Add the Webhook Payload for the Alert TargetYou can specify a content type in the Payload section to include as a payload for the trigger request. Content-Type: The MIME Type for the data.
Data: Payload content.
Severity: A combination of Severity indicators.
| |||
Data Payload Example 01 | A string containing key-value pairs for the content.
{ | ||
Data Payload Example 02 | A simple alert text string:
| ||
3. Add Sub Requests As NeededYou can add additional URL calls to the request sequence in the Sub Requests section.
URL: URL to access. Method: HTTP Methods to use for calling the authentication server.
Repeat: Indicates if the call should be repeated until the Condition expression is matched. Condition: An XPath expression representing the condition to match when the Repeat checkbox is marked. Example: | |||
4. Add if Sub Requests Repeat and if they have a Repeat ConditionChecking the Repeat box setting makes the subrequest step repeat until a Condition is met. When you want to do this, you need to set repeat on so a GET will be issued until the desired response is collected.
| |||
5. Add HeadersYou can define anHTTP Header in the Headers section to attach to the subrequest. Name: The name of the header. Value: The value of the header. Multiple headers for each sub-request can be added by clicking the green Add button. |
Resolve Sequence (Optional)
...
What service do you want to send a Webhook to?
What information do you want to send to that service?
Confirmation: Do you want to send HTTP requests to the application to see if it returns an expected response?
Do you want this to repeat? If so, under what conditions should it stop repeating?
Step | Screenshot | ||
---|---|---|---|
1. Define the Resolve URLWhat Webhook-enabled Resolve URL field is Apica going to use to stop the alert? It will send one of the selected Methods to this URL.
| |||
2. Add the Webhook Payload for the Alert TargetYou can specify a content type in the Payload section to include as a payload for the resolve request. Content-Type: The MIME Type for the data.
Data: Payload content.
| |||
Data Payload Example 01 | A string containing key-value pairs for the content.
{ | ||
Data Payload Example 02 | A simple alert text string:
| ||
3. Set Resolve Sub Requests As NeededYou can add additional URL calls to the request sequence in the Sub Requests section. Some services require more than one call to their REST API to resolve an alert event.
URL: URL to access. Method: HTTP Methods to use for calling the authentication server.
Repeat: Indicates if the call should be repeated until the Condition expression is matched. Condition: An XPath expression representing the condition to match when the Repeat checkbox is marked. Example: | |||
4. Add if Sub Requests Repeat and if they have a Repeat ConditionChecking the Repeat box setting makes the subrequest step repeat until a Condition is met. When you want to do this, you need to set repeat on so a GET will be issued until the desired response is collected.
| |||
5. Send Sub Request HeadersYou can define anHTTP Header in the Headers section to attach to the subrequest. Name The name of the header. Value: The value of the header. Multiple headers for each sub-request can be added by clicking the green Add button. |
Custom Webhook Examples
Custom Webhook w/ message placeholder (Microsoft Teams)
...
Sub Requests: After the initial request to https://hooks.slack.com is made, we want to get ADDITIONAL information about the check from an API call which gives us more check data. We store that data in the Response Parameter we explained above. Example: https://api-wpmasm-eu1.apicasystemapica.comio/v3/checks/{check_id}?auth_ticket={auth_ticket}
Resolution Request: the final API call we make when the Alert is Resolved. Note the usage of both Message and Webhook placeholders to give our resolution message that dynamic data we need. Generated from the Slack end. Example: https://hooks.slack.com/services/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
...