Microsoft Teams Notifier
The microsoft teams notifier allows to get notified on your favorite microsoft teams channel when an instance of go-feature-flag
is
detecting changes in the configuration of your flags.
Configure Microsoft Teams Notifications
- First create a Webhook in the channel you want to send notifications to.
Need a hand?Click here to see how it's done - Copy the webhook URL
- Now you can configure your notifier
err := ffclient.Init(ffclient.Config
{
// ...
Notifiers: []notifier.Notifier{
µsoftteamsnotifier.Notifier{
MicrosoftTeamsWebhookURL: "https://xxx.xxx/..."
},
},
})
Configuration fields
Field | Description |
---|---|
MicrosoftTeamsWebhookURL | The complete URL of your microsoft teams webhook. |