Content
Deploying Azure Function via bicep templates with custom docker container is not working
We are trying to deploy an azure function behind private endpoint and using custom docker container image that we store in a Azure Container Registry. We are using bicep templates to deploy the necessary resources automatically. The issue we are faced…


Azure Functions logs (FunctionAppLogs) table does not appear under LogManagement tables in Log Analytics Workspace.
The test example to reproduce this issue was generated from this Quickstart: Create a C# function in Azure from the command line documentation. Additional diagnostic setting was added as described in Monitoring Azure Functions with Azure Monitor Logs…


How to Capture Incoming Webhook JSON Payload using Az Functions
Hi All, I have configured a basic Azure Function and using that function URL as an endpoint for a Webhook on a vendor's website. I have turned on the App Insights and was able to see the response coming in the log. I would like to capture the JSON…


Limit Azure Function to run 1 request at a time - ideally with a delay
I have a javascript Azure function on a consumption plan that is triggered by an HTTP request. This Azure function makes an HTTP request itself to a 3rd party API. The problem I am facing is that the Azure function is sometimes getting called…


EventGridTrigger is not working Secure Function App (Register in Azure AD)
Hi Team, Facing issue in afte function app Authentication. I created one EventGridTrigger function as per the below code. [Function("EventBasedTrigger")] public async Task Run([EventGridTrigger] EventGridEvent…


Azure Function App: region has quota of 0 instances for your subscription
Region: us-west-2 Plan: Azure Plan I currently have no other function apps deployed


What i need to do to replace PnP.Core.Services with CSOM for our Azure Function which uses .net 6.0
I have an Azure Function which uses PnP.Core.Services to interact with SharePoint to create a list item. The Azure function is based on .net version 6.0. I have this startup.cs:- using Microsoft.Azure.Functions.Extensions.DependencyInjection; using…


.NET 5 Isolate process Azure Service Bus Trigger Message Success Handling
In the case of a Service Bus Trigger, an isolated process in .NET 5, how can I propagate the success or failure of a message? If you use the Service Bus SDK rather than the Azure Function, you can determine whether message processing was successful…


How can Consumption plan Azure Functions handle health checks?
I am investigating an issue where my Function app running on a Consumption plan is receiving HTTP requests as much as 20 seconds before the host is initialized, even when other hosts exist. My understanding is that for dedicated App Service Plans the…


How to identify unused Azure functions
I'm trying to find a way to find any unused Azure Functions in my environment. So far I've tried looking at Cost Analyzer, which shows costs per resources, though I'm seeing costs of $0 for functions I know are active (If I go into app insights and…


Not able to get http response from a third party API when code deployed to azure function app, in debug mode its working fine
I have created an azure http trigger (also tried with timer trigger) function and it is calling an third party API with necessary params as content header. Locally in VS Code (debug mode), it's working fine. I am getting desired response (getting token…


How to setup an ADF pipeline that isolates every pipeline run and create its own computer resources?
I have a simple pipeline in ADF that is triggered by a Logic App every time someone submits a file as response in a Microsoft forms. The pipeline creates a cluster based in a Docker and then uses a Databricks notebook to run some calculations that can…


My Azure Function in Python v2 doesn't show any signs of running, but it probably is
I have a simple function app in Python v2. The plan is to process millions of images, but right I just want to make the scaffolding right, i.e. no image processing, just dummy data. So I have two functions: process with an HTTP trigger @app.route, this…
The Function app may be missing a module containing the 'Connect-MgGraph' command definition
I am trying to run a Microsoft Graph PowerShell script through azure PowerShell function. But I am getting following error The Function app may be missing a module containing the 'Connect-MgGraph' command definition. If this command belongs to a module…


Tutorial for creating IOT Hub Triggered Azure Functions in Visual Studio using C#
I am looking for a decent walk through to take me through the process of creating an IOT Hub Event triggered Azure function in Visual Studio including local testing and deployment to Azure.


.NET 3.1 function app does not work after pipeline deployment
I have a .NET 3.1 application deployed to Azure Functions as ZIP archive. I’m using Azure Pipelines to build, pack and upload the project code. Several months ago, everything was working fine. I was able to build code and upload my application to Azure…


trying to find .net SDK to fetch subscription and service limits
Working on solution to develop a function to fetch the subscription limits using SDK or and REST API, then fetch existing usage with a subscription, calculate the difference between limit vs usage and add some alerts around when usage reaches close 85%.…


Issue: While updating managed metadata field of document file via graph api
Hi team, I'm facing trouble to update managed metadata fields via graph api, the only condition it is getting failed when first time managed metadata field not updated with the file upload , second time it will not allow me to update via patch…


How can I increase the timeout for Azure Consumption plan for more than 10 mins
How can I increase the timeout for Azure Consumption plan for more than 10 mins.


secure calling the Azure Functions using AD user account/s and how we authenticate the azure function with SharePoint
We want to automate the folder creation for our document library. so we created a SharePoint custom list >> where you will define the main folder and the sub-folders >> save the items >> then a schedule azure function will run each 15…

