-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad4a3a4
commit 631931a
Showing
4 changed files
with
108 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 9 | ||
sidebar_position: 10 | ||
--- | ||
|
||
import Tabs from '@theme/Tabs'; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
--- | ||
sidebar_position: 9 | ||
--- | ||
import Tabs from '@theme/Tabs'; | ||
import TabItem from '@theme/TabItem'; | ||
|
||
# OpsGenie | ||
|
||
A system task to send alerts to OpsGenie in the event of workflow failures. This task can be used in conjunction with the [Query Processor](/content/reference-docs/system-tasks/query-processor) task, which fetches metadata details to trigger alerts to OpsGenie as required. | ||
|
||
## Definitions | ||
|
||
```json | ||
{ | ||
"name": "ops_genie_task", | ||
"taskReferenceName": "ops_genie_task_ref", | ||
"inputParameters": { | ||
"alias": "${workflow.input.opsGenieAlias}", | ||
"description": "${query_processor_ref.output.result.workflowsUrl}", | ||
"visibleTo": "${workflow.input.opsGenieVisibleTo}", | ||
"message": "Failed Worklows detected", | ||
"responders": "${workflow.input.opsGenieResponders}", | ||
"details": {}, | ||
"priority": "${workflow.input.opsGeniePriority}", | ||
"entity": "${workflow.input.opsGenieEntity}", | ||
"tags": "${workflow.input.opsGenieTags}", | ||
"actions": "${workflow.input.opsGenieActions}", | ||
"token": "${workflow.secrets.OPS_GENIE_TOKEN}" | ||
}, | ||
"type": "OPS_GENIE", | ||
} | ||
``` | ||
|
||
## Input Parameters | ||
|
||
| Attributes | Description | | ||
|-------------|-------------------------| | ||
| alias | Specify the user-defined alias that will be created in OpsGenie when alerts are triggered. Alias are user-defined identifiers for alerts, limited to a maximum of 512 characters in OpsGenie. | | ||
| description | Specify the description related to the alert. The description is limited to 15,000 characters in OpsGenie. | | ||
| visibleTo | Specify the users in OpsGenie who can view the alerts. | | ||
| responders | Specify the names of the responders to be notified on creating this alert. | | ||
| message | Specify the message to be displayed in the OpsGenie. This field can be leveraged to quickly give an overview of the alert. | | ||
| priority | Set the priority of the alert. | | ||
| entity | Specify the domain the alert is related to, such as the server's name or application. | | ||
| tags | Specify the tags to be added for the alerts in OpsGenie. | | ||
| actions | Specify the OpsGenie actions to be executed on the alert. | | ||
| token | Specify the API token to integrate with your OpsGenie account. Refer to the official [OpsGenie documentation to get the API keys](https://support.atlassian.com/opsgenie/docs/create-a-default-api-integration/). | | ||
|
||
:::info | ||
Refer to the official [OpsGenie documentation for more information on the alert fields](https://support.atlassian.com/opsgenie/docs/alert-fields/). | ||
::: | ||
|
||
## Examples | ||
|
||
<Tabs> | ||
<TabItem value="UI" label="UI" className="paddedContent"> | ||
|
||
<div className="row"> | ||
<div className="col col--4"> | ||
|
||
<br/> | ||
<br/> | ||
|
||
1. Add task type **OpsGenie**. | ||
2. Configure the query parameters. | ||
|
||
</div> | ||
<div className="col"> | ||
<div className="embed-loom-video"> | ||
|
||
<p><img src="/content/img/opsgenie-ui-guide.png" alt="Adding OpsGenie Task" width="500" height="auto"/></p> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
</TabItem> | ||
<TabItem value="JSON" label="JSON Example"> | ||
|
||
```json | ||
{ | ||
"name": "ops_genie_task", | ||
"taskReferenceName": "ops_genie_task_ref", | ||
"inputParameters": { | ||
"alias": "DemoAlias", | ||
"description": "Alert on failed workflows", | ||
"visibleTo": "${workflow.input.visibleUsers}", | ||
"message": "Failed Worklows detected", | ||
"responders": "${workflow.input.responders}", | ||
"details": {}, | ||
"priority": "${workflow.input.opsGeniePriority}", | ||
"entity": "${workflow.input.opsGenieEntity}", | ||
"tags": "${workflow.input.opsGenieTags}", | ||
"actions": "${workflow.input.opsGenieActions}", | ||
"token": "${workflow.secrets.OPS_GENIE_TOKEN}" | ||
}, | ||
"type": "OPS_GENIE", | ||
} | ||
``` | ||
|
||
</TabItem> | ||
</Tabs> | ||
|
||
Have a look at the [workflow alerting example with OpsGenie](https://orkes.io/content/templates/alerting/querying-orkes-data-and-triggering-opsgenie-alert) for a detailed example of leveraging this task. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 10 | ||
sidebar_position: 11 | ||
--- | ||
|
||
import Tabs from '@theme/Tabs'; | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.