Azure Insights gets no telemetry data from Azure Functions
I have some Azure Functions that "setup" to Azure Application Insights, but I do not get any data in the Azure Application Insights. Basic Troubleshooting I have done already: I know my Azure functions are running and executing correctly…
Azure Functions
Function App Deployment Fails for Minimal 'Hello World' App
Problem Description: I am unable to deploy any Python 3.11 function to a new Linux Consumption App. Even after stripping the application down to an absolute minimal 'Hello World' example with only the 'azure-functions' dependency, the deployment fails.…
Azure Functions
Unable to Add IPv6 Addresses for Function Access to Key Vault – Firewall Configuration Concern
■Background We're currently configuring Azure Key Vault to restrict access exclusively to Logic Apps and Azure Functions, both of which are utilizing the Consumption Plan. ■Issue We've reviewed the official Microsoft documentation regarding Outbound IP…
Azure Functions

I'm having a challenge accessing the create feature on the overview tab after creating a function app
Every time i create a function app under the consumption option I can't access the create feature (to create a http trigger) on the overview tab. Therefore, i can't create a webhook url to link to my app. Currently i have tried editing/removing…
Azure Functions
ServerFarmCreationNotAllowed Error When Creating Function App
Encountering the error ServerFarmCreationNotAllowed while attempting to create a Function App. Below are the steps validated and attempts made to resolve the issue: The user has been assigned as the subscription owner. Subscription plan: Azure Plan,…
Azure Functions
Unable to create a function app | The template deployment 'Microsoft.Web-FunctionApp-Portal-<case id>' is not valid according to the validation procedure.
I am trying to create a function app using my pay-as-you-go subscription. I am getting same error since two days. Initially I used my free credits, did not work. then I upgraded my account and added payg subscription, still did not work. I tried almost…
Azure Functions
How to Deploy a Node.js Azure Function Using FFmpeg for WebM to WAV Conversion?
We are using FFmpeg in a JS function to convert WebM base64 to WAV base64, and it's working fine on the local system. But we are not able to deploy the function in Azure Function. Is there any process to deploy the function in Azure Function App?
Azure Functions

I have rehydrated my host.json blob back to hot, but still getting the error: Failed to read from Blob Storage Secret Repository because its access tier is set to archive.
I opened my Functions blade to my function that I created a while back and found it displaying the error: Failed to read from Blob Storage Secret Repository because its access tier is set to archive. Looking into it (ie reding this doco page) I found…
Azure Functions
Intermittent “ManagedIdentityCredential authentication unavailable” errors in Azure Function API when connecting to Azure SQL
Environment: Azure Function App .Net 9.0 HTTP Version 1.1 Minimum Inbound TLS Version 1.2 I have set up System Managed Identity on my Azure SQL databases. This was done by: Using the VS publishing tool, I created a connection to my Azure database…
Azure Functions
Configure Azure Function Apps CORS to support custom HTTP headers
I am running an Azure Function App with HTTP Triggers. I have CORS enabled for it and I have set the Allowed Origins in Azure CORS section. Everything works fine until I make a request from my Web Application and set to submit a custom header with my…
Azure Functions
msdeploy functionapp failed with "the operation has timed out"
E:\agent01_work_tasks\AzureRmWebAppDeployment_497d490f-eea7-4f2b-ab94-48d9c1acdcb1\3.257.0\node_modules\azure-pipelines-tasks-webdeployment-common\MSDeploy\M229\MSDeploy3.6\msdeploy.exe : Error: Could not complete the request to remote agent URL…
Azure Functions

Queue trigger function app not processing messaging on queue as expected
I have a few issues that that recently started appearing with my function app that should be triggered by messages arriving on a queue. Firstly, I want to limit the number of concurrent messages that my function app can process to 2 at a time. However,…
Azure Functions

Where is the API reference doc for azurefunctions.extensions.bindings.blob
I was going through the blob triggers example on the Microsoft website and came across this import azure.functions as func import azurefunctions.extensions.bindings.blob as blob For azure.functions, I know the api doc is at link. For…
Azure Functions
How can i run selenium script in functions app
How can i run a selenium script on Azure. How would i store the chrome executalble file and access it in my function script?
Azure Functions
Do My Azure Functions executed automatically on changing function app python version or adding environment variables in Azure Function because of restart
Hi, Do My all Azure Functions executed automatically on following occasions changing function app python version in azure function configuration On adding environment variables in Azure Function because of restart. On clicking restart in azure…
Azure Functions
Unable to deploy function app - ServerFarmCreationNotAllowed
Function App fails to deploy with ServerFarmCreationNotAllowed {"code":"InvalidTemplateDeployment","details":[{"code":"ValidationForResourceFailed","message":"Validation failed for a…
Azure Functions
Blob trigger not working when new file arrives in the blob storage. The files are still kept in the blob storage
The blob trigger functions doesn't triggers whenever a new files arrives. It works randomly sometimes and rest it doesn't processes the files Below is my host.json { "version": "2.0", "logging": { …
Azure Functions
Creating an Azure function through the portal
From within the Function App, I can't create a function through the portal. It only shows me VS Code or VS. Apparently this is a problem many people have posted in various forums with no solution.
Azure Functions

What is the best way to implement timeout restrictions in an Azure Function orchestrator?
I have a Function App written in python with multiple durable function entities such as orchestrator and activity functions to implement the fan-out fan-in pattern in my code. It collects some data for multiple different sources through different…
Azure Functions
Azure Function Timer not triggered on minute intervals
I am trying to create a timer function (within my function app) that will renew a certain web hook. In the end I want to have it run once every day, but for development purposes I have tried running it every second. Running it every second seems to work.…