Created
September 11, 2021 11:53
-
-
Save pacodelacruz/d9b181dbfe622c87d2fd829e4938f7c6 to your computer and use it in GitHub Desktop.
This file contains 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
traces | |
| where operation_Name == "FlowRunLastJob" | |
| extend resource = parse_json(tostring(parse_json(tostring(customDimensions.prop__properties)).resource)) | |
| project timestamp | |
, LogicApp = tostring(cloud_RoleName) | |
, Workflow = tostring(resource.workflowName) | |
, WorkflowStatus = tostring(customDimensions.prop__status) | |
| where WorkflowStatus == "Failed" | |
| summarize Count = count() | |
by bin(timestamp, 1d) | |
, Workflow | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment