Questions tagged [azure-functions-runtime]

424 questions
1
vote
1 answer

Is there a way to attach the Azure Functions host logger to normal C# tracing?

I have an Azure Function app that uses other DLLs. I'm trying to get the logging from those DLLs, which uses TraceSource or Trace.*, to show up in the azure functions/webjobs host window when running locally (and hopefully when running in Azure). Is…
Josh
  • 6,944
  • 8
  • 41
  • 64
1
vote
2 answers

Can Azure Functions be developed offline?

Can I develop and test Azure Functions completely offline (no network connection)? I understand Azure Functions can be debugged locally but that's not the same as working completely disconnected from the Azure platform. I found a few references in…
DenaliHardtail
  • 27,362
  • 56
  • 154
  • 233
1
vote
1 answer

How to publish azure function from vs code?

I have installed azure-tools-vscode, but don't know exactly how to use it for publishing the Azure function: some steps I have tried are: Windows PowerShell Copyright (C) 2015 Microsoft Corporation. All rights reserved. PS…
1
vote
1 answer

Azure Functions Runtime - New install HTTP 401

After a Fresh install of Azure Functions Runtime, it appears that there is a process which is requesting an API key that fails with HTTP 401. The specific call is GET Response returned is: {"Message":"Authorization has been denied for this…
Ryan McVicar
  • 103
  • 7
1
vote
1 answer

Azure Function - 'AzureWebJobsServiceBusConnectionString' is missing

Use Case: I've an Azure Function that will be triggered by 'serviceBusTrigger'. Following best practices, I've the Azure service bus connection string in 'appsettings.json' and likewise in app-settings on the Azure function app. All is well! Now,…
0
votes
1 answer

VS Code debugging Typescript Azure Functions

I am trying to debug an Azure Function App in VS Code. The Function App was created in VS Code like described in the Azure Documentation. During this process a .vscode directory was created with the following configuration: .vscode/launch.json { …
0
votes
0 answers

Timeouts sending out HTTP requests in Python Functions apps on Azure

As of recently, multiple API calls executed in the Azure function app environment have broken down. The responses of these calls are simply Timeouts, which are difficult to debug. for a simple request like so: requests.get(url, timeout=100), the…
0
votes
1 answer

Azure Functions with Python Runtime v2: Issues with Libraries (gcc, libpq) on Consumption-Based Model

Hello Stack Overflow community, We are working on an application that uses Azure Functions with the Python runtime v2 model to interact with a PostgreSQL database. Our functions require specific libraries, namely gcc and libpq, to be installed on…
0
votes
2 answers

Azure Functions - Cosmos DB Trigger Listener Unable to Start

I'm experiencing an issue with an Azure Function App named 'fa-store-ticket' that contains a function called 'CosmosTrigger1'. The runtime stack is Node ~18, running on Windows, and the operating mode is set to Consumption. Here's the function.json…
0
votes
1 answer

Azure Functions "Microsoft.Azure.WebJobs.Script: Error building configuration in an external startup class. System.Net.Http"

I am migrating an Azure Functions application from Runtime v3 to v4. The functions app includes Durable Functions. Migrating the code was straight forward and I had no issues running locally. However, when I published to production, I started seeing…
0
votes
3 answers

Failed to start a new language worker for runtime: dotnet-isolated - latest version of C# .Net 7

I have an Isolated Azure Function. Now I am getting this famous error: Failed to start a new language worker for runtime: dotnet-isolated I have searched and done all possible solutions in Stack overflow and Github. The reason I am asking is most of…
0
votes
2 answers

Upstream Azure SignalR function issues Could not load file or assembly Microsoft.Extensions.Options runtime exception

Note: This issue is not duplicate despite the title reads similarly. The following upstream signalR trigger function has been working well until we upgraded the NuGet packages to the latest versions. [Function("OnConnected")] [SignalROutput(HubName…
Arash
  • 3,628
  • 5
  • 46
  • 70
0
votes
2 answers

How to upgrade the Azure Functions project runtime from v3 to v4?

Trying to upgrade my local vs code azureFunctions.projectRuntime from v3 to v4 for my azure function app written in python. I have installed the azure function tools 4 using both the installer and the npm command, installed .net runtime 6.0 sdk but…
0
votes
1 answer

Why is the functions runtime not finding my functions when I import certain packages?

I get the following traces when I publish my Python 3.8 app to an Azure function on a Linux consumption plan: No job functions found. Try making your job classes and methods public. If you're using binding extensions (e.g. Azure Storage, ServiceBus,…
0
votes
0 answers

Add customDimensions to requests in an Azure PowerShell Function App

I have a PowerShell function app that I'd like to add logging to, with customDimensions, to Azure Application Insights. It logs a request but I'm struggling to find out how to add custom properties to the existing telemetry client. So is it even…