Fix Logic App template: update triggerBody to data.context for Azure …#14667
Closed
its-abhaykumar wants to merge 1 commit intoAzure:masterfrom
Closed
Fix Logic App template: update triggerBody to data.context for Azure …#14667its-abhaykumar wants to merge 1 commit intoAzure:masterfrom
its-abhaykumar wants to merge 1 commit intoAzure:masterfrom
Conversation
Contributor
|
Thanks for your contribution. We're closing stale PRs (no updates in 90+ days) as we transition to the new CI process — see #14715 for the new submission requirements. If you'd like to continue with this change, please rebase against master, ensure the new |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix Logic App Slack template: update triggerBody to data.context for Azure Monitor alerts
Fixes #14225
Problem
The current Logic App template for posting Azure Monitor alerts to Slack assumes that alert payloads are structured with
triggerBody()['context'].Azure Monitor now sends alert details under
data.contextfollowing the Common Alert Schema. As a result, Slack messages were missing key alert information or failing.Solution
triggerBody()['context']→triggerBody()['data']['context']Testing
{ "status": "Activated", "data": { "context": { "name": "Test Alert", "portalLink": "https://portal.azure.com/#resource/test", "resourceName": "MyResource" } } }