Deploying Event Subscription failed
Reeceiving error message when creating webhook with URL https://testchatbot002.azurewebsites.net/api/acs-webhook Able to POST using postman with BODY { "eventType": "AdvancedMessageReceived", "data": { …

How to query Snowflake data in C#
Hi there, How to query Snowflake data in C# ? My code: public static async Task<DataTable> ExecuteSnowflakeQuery(string connectionString, string query) { DataTable dt = new DataTable(); try { using (var connection = new…
Azure function app on consumption plan not processing messages from service bus queue
Hello, I'm encountering an issue with my C# .NET Isolated function app (consumption plan) and its interaction with an Azure Service Bus queue. Specifically, one particular queue is not triggering the associated function app when messages are placed into…
Azure Function App Deployment Issue
Hello Microsoft Azure Support Team, My function app on the Azure Portal doesn't show the Azure Functions when I deploy the Function App project in my Visual Studio Solution file. They publish and work correctly on local. I have tried all ways of…
GOLANG: No stacks found for "custom" on Azure Functions v4
Following the instructions on learn.microsoft.com for creating an Azure Function written in Golang, the instructions fail here:…
Ho to control "Microsoft.Azure.WebJobs.Script.WebHost.Middleware.SystemTraceMiddleware" logs being sent to my Datadaog?
We have integrated the datadog for capturing the azure function application insights logs. Its taking too much of our datadog resources. How to control that? I tried many methods like putting different values in the host.json, But nothing is…
Azure Service Bus Function fails with "The lock supplied is invalid. Either the lock expired, or the message has already been removed from the queue."
Hi. Azure Service Bus Function (CompleteMessageAsync) Exception: "The lock supplied is invalid. Either the lock expired, or the message has already been removed from the queue." Microsoft.Azure.Functions.Worker.Extensions.ServiceBus …
Azure Function app when deployed thru GitHub Actions Wokflow do not show the functions in the function app
Azure Function app when Deployed thru CICD with GitHub actions workflow, will not display the function in the function app, however the same solution deployed with Visual Studio Publish profile do show all the function in the function app. Here is the…
My function app is not working in the cloud, but working fine locally
My function App is working fine locally, but it is not detecting any functions when uploaded to the cloud. I have reviewed the host.json, function.json, and function_app.py thoroughly. The logs show that an http function is correctly routed when deleting…
What records do I need for goDaddy to change the DNS for azure function
I am trying trying to change the dns for an azure function that I just created using godaddy. I added a CNAme in Godaddy along with txt record however it does not seem to be resolving. I am using Azure function consumption plan with windows container…
Azure Function App - Error While Loading System Keys
I've setup an Azure Function App and when trying to access the "App Keys", I get the following error for both System Keys and Host Keys: Error while loading system keys Ask questions and use troubleshooting tools to investigate these errors.…
Multiple innovacation logs in function App
Multiple innovacation logs in function App . Below is the host.json file { "version": "2.0", "logging": { "applicationInsights": { "samplingSettings": { "isEnabled": true, …
Details about Scale-in behavior with target-based scaling in Azure Functions Premium Plan
Context: When using Azure Functions Premium plan, scaling is done via "event-driven scaling" When using a Storage Queue Trigger, "target-based scaling" is used by default. In its documentation Target-based scaling, Microsoft describes…
GitHub action Azure/functions-action@v1 crashes randomly, 404 on zip
I am trying to use the actions in my github workflow. Action triggers normaly, but sometimes doesn't find it's own zip file and i don't understand why. I run it with the following args : app-name: autom-edge-b2b slot-name: Production package:…
Azure function installation
I'm trying to use Azure Functions in my project but am having trouble deploying my function app. Can someone explain the correct steps for deploying to Azure Functions using Visual Studio Code?"
unable to create azure function error: The subscription is not allowed to create or update the serverfarm.
Error unable to create azure function error: The subscription is not allowed to create or update the serverfarm. Unable to fix it using public available information.
Best Practices for Seamless Redeployment of Azure Function Apps without Downtime
Setup I am currently working with IaC (Bicep) and among others use it to create FunctionApps. I create my storage account, function plan and function app together. I use the consumption plan in test environment. But the plan is to use FlexConsumption for…
Azure function fastapi endpoint log is not appearing in the application insights
We are facing an issue with the logging functionality in an Azure Function App using FastAPI. Specifically, logging.info statements are not displaying logs in Application Insights, which makes it difficult to monitor and troubleshoot the function. Below…
How to add app authentication to the azure function for the authenticating tokens generated by azure ad b2c
I am using Azure AD B2C for user sign-up and sign-in. When a user signs in, both an access token and an ID token are issued. I have Azure Functions hosted in my primary tenant, and I want to authenticate users before running my azure function using …
Azure function app showing log in the log stream when displaying hibernate information
We have a few functions that we run in an Azure Function App. We are using C3P0 hibernate to create the connection pool in our functions. When we run the functions in our local environment. We see no errors in the logs. When we check the log stream in…