I have an azure function that I want to send a message to a service bus that has a correlation filter on it. Specifically the correlation filter is on the labe
I'm trying to debug locally a project that is deployed on Microsoft Azure. I have a copy of the repository on my PC and setup the launch.json file as: { "ve
I have a use case where I want to disable the old Logic Apps that our company is no longer using. All the Logic App are present in different environments and ne
I'm trying to understand how deployment slots work. Let’s say I have an Azure Function with one slot (production slot). This Azure Function contains multi
I have one Azure function app. I am trying to run that locally but getting the below error. I have the storage emulator up and running. Storage emulator status
I have an Azure static web app with a svelte front end and azure server less functions for backend. When developing locally I can connect to the functions perfe
I am building a .NET Core 3.1 Azure Functions application on my local and am trying to configure a startup class. When I implement a class to inherit from Funct
With Azure Powershell, how do you get a list of all of a Function App's functions and their respective status (status at the function level, not FunctionApp lev
The functionTimeout parameter in my host.json file is set to "functionTimeout": "00:45:00" I'm seeing timeouts happen every 45 minute interval. When I dig into
Currently Microsoft has introduced a new way to treat azure functions called isolated process and it's the only way to run Azure functions on .NET5. I am trying
First and foremost I'm new to Azure Functions and have only been working with it for a couple of weeks, so please bear with me. I was tasked with taking one of
I have an Azure function that makes a http call to a webapi endpoint. I'm following this example GitHub Polly RetryPolicy so my code has a similar structure. So
how can I access the trigger details (insertionTime) shown in the monitor of an azure function inside the function call: import azure.functions as func def mai
I am using azure functions written in NODE JS. I am starting the local server with func host start and everything works fine. But the problem is when i change
Im using .net sdk fluent azure API to change slots. I have two slots, prod and maintenance. I use azure queue trigger function to update appsettings, restart fu
Azure function (Timer trigger) uses Restsharp to make a REST call to an external API, which is failing with error A connection attempt failed because the conne
I have tried every variation of what this document has to offer to make an azure function that takes in an event grid event and outputs and event grid event: ht
For Azure Functions, log levels are configured in the host.json. How to read its values programmatically for logging nodes? We tried to read it from the environ
Here's the sequence of actions performed inside Azure powershell function - if (Get-AzKeyVault -VaultName $name) { #This should Delete the KeyVault and put
I have to run a function on a list of items. I'm using Azure Durable Functions, and can run the items in parallel using their fan out/fan in strategy. However,