zulip/zerver/webhooks/newrelic/doc.md

2.8 KiB

Zulip New Relic integration

Get Zulip notification for New Relic incidents.

{start_tabs}

  1. {!create-channel.md!}

  2. {!create-an-incoming-webhook.md!}

  3. {!generate-webhook-url-basic.md!}

  4. In New Relic, go to the Alerts menu, and select Destinations. Choose Webhook in the Add a destination section.

  5. Set a Webhook name, such as Zulip. Set the Endpoint URL to the URL generated above. Click Save destination.

  6. In the Alerts menu, select Workflows. Click on + Add a Workflow.

  7. Set your workflow name, and filter the trigger conditions. In the Notify section, choose Webhook. In the Edit notification message menu, select the destination for Zulip created above.

  8. In the Payload section, you can configure the payload for this workflow. The default payload template is sufficient to get the integration working, but using the message template below will enable the integration to notify you of any acknowledged New Relic incidents. To include additional custom fields, refer to configuration options:

      {
         {% raw %}
         "id": {{ json issueId }},
         "issueUrl": {{ json issuePageUrl }},
         "title": {{ json annotations.title.[0] }},
         "priority": {{ json priority }},
         "totalIncidents": {{json totalIncidents}},
         "state": {{ json state }},
         "createdAt": {{ createdAt }},
         "updatedAt": {{ updatedAt }},
         "alertPolicyNames": {{ json accumulations.policyName }},
         "alertConditionNames": {{ json accumulations.conditionName }},
         "owner": {{ json owner }},
         "zulipCustomFields": {}
         {% endraw %}
      }
    
  9. Click Send test notification to receive a test notification. Select Save message, and click Activate Workflow.

{end_tabs}

{!congrats.md!}

Configuration options

  • With New Relic's custom payload feature, you can include custom fields in your Zulip notifications by configuring a zulipCustomFields dictionary in your notification payload template. The keys of zulipCustomFields will be displayed in the Zulip notification message, so we recommend that they be human-readable and descriptive. The values of the dictionary can be strings, integers, booleans, or lists of the those same data types.

{!webhooks-url-specification.md!}