Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
52 views

Problem Statement We are using .NET isolated Azure Functions and noticed that Application Insights logs intermittently go missing, even though we explicitly disabled sampling in the host.json ...
Mahesh Patil's user avatar
0 votes
0 answers
74 views

I have an Azure Function (timer triggered) that doesn't seem to be writing information log messages into Application Insights. When I use LogError/Warning/Critical it works, but LogInformation does ...
Yndigo Dream's user avatar
1 vote
1 answer
209 views

I'm following the official Microsoft articleModel Context Protocol bindings for Azure Functions overview to make MCP-callable a function of my Azure function app, which works well through input and ...
Mauro Minella's user avatar
1 vote
1 answer
145 views

I'm struggling to disable dependency tracking in a project that uses Azure Functions (v4) using .NET 9 as an Isolated Process. I want to do this as these entries are clogging up our log files with ...
KevWhite82's user avatar
0 votes
1 answer
162 views

We recently upgraded our Azure Functions project from .NET 6 to .NET 8 using the isolated worker model. After the upgrade, durable orchestrations that were originally created in .NET 6 are no longer ...
user30535254's user avatar
0 votes
1 answer
183 views

I have an Linux Azure function with runtimeStack as 'DOTNET-ISOLATED|9.0'. I am using consumption plane and AzureFunctionApp@2 Azure DevOps pipeline task to deploy my code from Azure DevOps. - ...
Sibeesh Venu's user avatar
  • 22.3k
0 votes
0 answers
41 views

How to access FunctionContext.Items inside GraphQL resolver with HotChocolate.AzureFunctions.IsolatedProcess? Environment: .NET 8.0 Azure Functions Isolated Worker HotChocolate.AzureFunctions....
Sandeep K's user avatar
0 votes
1 answer
51 views

Can we retrieve the app configuration from Azure Functions in the dev or prod environment? It works locally, but not in the dev environment. I'm trying to fetch connections from Azure App ...
Karthik's user avatar
0 votes
1 answer
313 views

I'm trying to create a new Azure Function in Visual Studio, but I'm encountering an issue. When I attempt to create the function, instead of the Azure Function icon, it displays the C# icon. This is ...
Akshay Kumar's user avatar
0 votes
1 answer
327 views

I am working on a Azure Durable Function in Isolated Worker Model and using durable task extension "Microsoft.Azure.Functions.Worker.Extensions.DurableTask" for the same. This package ...
soumyadeb ghoshal's user avatar
0 votes
1 answer
141 views

Regarding Azure Functions Isolated model. Help me with below question Often saw in Microsoft docs that says, In-Process model shares the dependency libraries between Host & Function worker process....
user avatar
0 votes
2 answers
162 views

In Visual Studio I created a new Azure Function project with an HttpTrigger function. This is the code for the function: public class DoSomething { private readonly ILogger<DoSomething> ...
Paolo Crociati's user avatar
0 votes
1 answer
168 views

I've got an Azure isolated function like so: [Function("TransactionEventsIntegration")] [ExponentialBackoffRetry(maxRetryCount: 3, minimumInterval: "00:00:02", ...
Bhav's user avatar
  • 2,287
0 votes
1 answer
118 views

I'm developing an Azure Function app with C# / .NET 9 in the isolated worker model. According to the docs, it should be possible to send application logs directly to Application Insights instead of ...
Shuzheng's user avatar
  • 14.6k
1 vote
2 answers
236 views

I have the following function that should return either a 200 response with a book as payload or a 404 with empty body: using System.Collections.Generic; using System.Threading; using System.Threading....
Lucas Lobosque's user avatar
1 vote
1 answer
187 views

Background problem: I have a document POCO that I would like to use with the CosmosDbOutput binding extension (latest, v4). I prefer to have my POCO property names in PascaLCase, and my Cosmos / Json ...
Adam Vincent's user avatar
  • 3,869
0 votes
1 answer
254 views

Has anyone tried the following Microsoft quickstart "Connect Azure Functions to Azure Storage using Visual Studio Code" with Isolated worker model? https://learn.microsoft.com/en-gb/azure/...
Angel Komarov's user avatar
1 vote
1 answer
136 views

I'm working on an azure function that is triggered by a service bus queue and finally posts content to a blob storage container using "BlobOutputAttribute" binding: [Function(nameof(...
H4p7ic's user avatar
  • 1,933
0 votes
1 answer
125 views

I have an Azure Function running in Azure Portal. Its configuration resides in a configuration resource, some values are in a key vault resource. The Azure Function was implemented in .NET 6 with the ...
Axel Meier's user avatar
  • 1,137
0 votes
1 answer
654 views

I am trying to add a customDimension to my Azure Function logs but they don't seem to be coming through and I have no idea why. I have tried using BeginScope and sending the args with the individual ...
James Mundy's user avatar
  • 4,359
2 votes
2 answers
567 views

I have added OpenAPI doc to my Function app project using Microsoft.Azure.Functions.Worker.Extensions.OpenApi, but the swagger/ui freeze when the response is too large, around 2mb. Is there anything I ...
Loc Dai Le's user avatar
  • 1,737
-1 votes
1 answer
251 views

How to log startup errors to the console and view them, when Application Insights are not yet configured and no ILogger<T> instance is available? I want to catch and log errors during to ...
Shuzheng's user avatar
  • 14.6k
3 votes
2 answers
6k views

I have updated an Azure function app from the in process model to the Isolated worker model but get this warning message in the portal. The 'FUNCTIONS_WORKER_RUNTIME' setting is required. Please ...
ym185's user avatar
  • 66
2 votes
1 answer
500 views

FunctionApp works fine when deployed from Visual Studio using the downloaded publish profile from Azure. But when I try to deploy from Gitlab using ci/cd pipeline, the FunctionApp is not displayed in ...
Vick A's user avatar
  • 31
0 votes
1 answer
63 views

I have an azure function in .net6.0 converted from framework 4.72. My code as follows, [FunctionName("GetAllProducts")] public static async Task<HttpResponseMessage> ...
Garry A's user avatar
  • 485