The LaunchDarkly change history event hook integration used to be called the audit log event hook integration, and still references the auditLogEventsHook.
This guide explains how LaunchDarkly partners can use the integration framework to build a change history event hook integration. By the end of this guide, you as a LaunchDarkly partner should have the information you need to create a change history events hook integration that LaunchDarkly sends whenever an event happens inside of LaunchDarkly.
Each of these events results in an event being published to LaunchDarkly’s change history. You can use this capability to send data to or trigger an event in another service.
Every resource you change in LaunchDarkly generates an associated change history entry. Your integration can transform these events into a format that a POST endpoint can receive. Your team can configure the POST endpoint when they set up the integration.
A common use case for the events hook is associating feature flag changes with targeting changes in a specific environment. However, integrations are not limited to that resource only. For a full list of supported resources, read About resource types and scopes.
To build an integration, make sure you meet the prerequisites. Then follow the steps outlined on the Getting started page.
The Getting started page explains each of the following steps in detail:
auditLogEventsHook integration.The following sections provide configuration guidance specific to change history events hook integrations.
A change history event hook integration can use either API keys or OAuth for authentication:
For an example OAuth integration, read AppDynamics Manifest under requiresOAuth. Integrations with require OAuth can still request additional formVariables.
The example below uses API Keys.
This example is looking for a flag template file under templates/flag.json.
The defaultPolicy limits the events to flag targeting changes for targeting in all production environments of all projects:
You can customize the flag template file as needed to control the rendering of your JSON payload to fit your expected output. If you don’t customize the template, then the webhook uses the default template.
Here is the default template:
This guide describes the process of building a change history event hook integration. To learn more about building your own integrations, read Building partner integrations.