Application Insights: Types of Availability Tests
Directly from Microsoft Learn Select an availability test - Training | Microsoft Learn: URL ping test (classic): You can create this test through the portal to validate whether an endpoint…
Directly from Microsoft Learn Select an availability test - Training | Microsoft Learn: URL ping test (classic): You can create this test through the portal to validate whether an endpoint…
I stumbled upon this: How to Debug and Trace request in Azure APIM - Portal, Postman, RequestBin | Tracing request in Azure APIM (tech-findings.com)Bookmarked for future reference.
resource logicApp 'Microsoft.Logic/workflows@2016-06-01' = { name: logicAppName location: logicAppLocation identity: {... } properties: {... }}output id string = logicApp.idoutput version string = logicApp.apiVersionoutput triggerUrl string…
In my yaml I send a the workflows in a pipe separated string e.g. "wf-one|wf-two|wf-three|wf-four"Then, in my bicep I populate an array of Workflow states app settings:var wfAppSettingStatuses = […
Ping from the console was disabled by default but this blog post gave me another option: How to ping from an Azure App service with TCPPING - Code4IT Ping response:Tcpping response:
XsltCompiledTransform does not allow embedded (inline script) code.I came across this github project and need to test this out: brandonh-msft/EmbeddedXsltTestFunction: Demonstrates how to use custom code in an XML Transform from…
When trying to debug a Logic App (Standard) in Visual Code, I saw the following exception:Running command: "func host start --port 8000"...'func' is not recognized as an internal or external…
This one's for me:The order of the six fields in Azure is: {second} {minute} {hour} {day} {month} {day of the week}.
APIM Add Retry Policy using Policy FragmentA connection that was expected to be kept alive was closed by the serverWe were seeing many API responses with status code 500 in…
The policy below adds the "Authorization" header to the backend request. All token request parameters are added to APIM as Named values. The "D365-secret" named value points to a secret…