Get started with Opsgenie as an admin
Start building your teams, integrate your tools and create on-call schedules.
Use Opsgenie’s Hosted Graphite Integration to forward Hosted Graphite alerts to Opsgenie. Opsgenie determines the right people to notify based on on-call schedules– notifies via email, text messages (SMS), phone calls, iOS & Android push notifications, and escalates alerts until the alert is acknowledged or closed.
When an alert is created in Hosted Graphite, an alert is created in Opsgenie.
Go to Opsgenie's Hosted Graphite Integration page.
Under the Free and Essentials plans, the tabs under the Team dashboard are limited to Main, Integrations, Members, and Activity Stream.
2. Specify who is notified of Hosted Graphite alerts using the Teams field. Autocomplete suggestions are provided as you type.
An alternative for Step 1) and Step 2) is to add the integration from the Team Dashboard of the team which will own the integration. To add an integration directly to a team, navigate to the Team Dashboard and open Integrations tab. Click Add Integration and select the integration that you would like to add.
3. Copy the API Key.
4. Click Save Integration.
In Hosted Graphite, go to Notification Channels.
Click + Add Channel.
3. Select Opsgenie option from Notification Type.
4. Enter the name of your notification channel to Name field.
5. Paste the API Key you copied from Opsgenie into Opsgenie API key.
6. Click Save.
Create Alert payload:
JSON
1
2
3
4
5
6
7
8
9
10
{
"name": "hostedgraphite_test_alert",
"criteria": "metric values missing for 1 minutes",
"graph": "http://i.mfhg.io/render-api/e3c33750/035359b9aefe772.png",
"value": "None",
"metric": "_test-data.servers.webserver0.requests.count",
"status": "alerting",
"backoff_minutes": false,
"info": "Instructions regarding the alert"
}
This payload is parsed by Opsgenie as:
JSON
1
2
3
4
5
6
7
8
{
"alarmName": "test",
"alarmCriteria": "metric values missing for 1 minutes",
"alarmValue": "None",
"alarmMetric": "_test-data.servers.webserver0.requests.count",
"alarmStatus": "alerting",
"alarmInfo": "Instructions regarding the alert"
}
Close Alert payload:
JSON
1
2
3
4
5
6
7
8
9
10
{
"name": "hostedgraphite_test_alert",
"criteria": "metric values missing for 1 minutes",
"graph": "http://i.mfhg.io/render-api/e3c33750/035359b9aefe772.png",
"value": "None",
"metric": "_test-data.servers.webserver0.requests.count",
"status": "recovered",
"backoff_minutes": false,
"info": "Instructions regarding the alert"
}
This payload is parsed by Opsgenie as:
JSON
1
2
3
4
5
6
7
8
{
"alarmName": "test",
"alarmCriteria": "metric values missing for 1 minutes",
"alarmValue": "None",
"alarmMetric": "_test-data.servers.webserver0.requests.count",
"alarmStatus": "recovered",
"alarmInfo": "Instructions regarding the alert"
}
Was this helpful?