Questions tagged [azure-function-app]

A function app is the container that hosts the execution of individual functions in the serverless framework Azure Functions.

A function app is the container that hosts the execution of individual functions in the framework.

Create a function app from the Azure portal

574 questions
0
votes
1 answer

Azure Functions support for authentication with HTTP trigger running in Kubernetes

Using the built in App Service Authentication / Authorization to populate the ClaimsPrincipal when hosting functions in Azure works great and is pretty well documented. However, trying to accomplish this with a containerized app in Kubernetes is a…
0
votes
2 answers

Calculation of azure function monitoring pricing

I have an azure function app which by default integrated with application insights app, now I can calculate the cost consumption of the function, but still cannot calculate monitoring cost. how can I know or calculate monitoring cost?
Walid
  • 119
  • 1
  • 7
0
votes
1 answer

Unable to read data from the transport connection: A connection attempt failed because the connected party

I am calling Logic App from Azure Function App using HttpClient call. Till yesterday Logic App and Function App both worked fine. But today, function app unable to call logic app. I got below error in Function…
chandra sekhar
  • 1,093
  • 4
  • 14
  • 27
0
votes
2 answers

How to design MIcroservice system on azure with workflow to call them in order

I have created around 10 Microservices on .net core 2.2, MongoDB and have deployed them on Azure Kubernetes, but I am getting a hard time understanding how to manage this on the server. All services are independent of each other but have to be…
0
votes
0 answers

Azure API Management and Function Apps

I am trying to set up a new environment on azure. The main idea is to have multiple Function Apps accessible only using API Management, so Im trying to set apps restriction to only Virtual Network. I've done: created Virtual Network with default…
bbz
  • 91
  • 1
  • 8
0
votes
1 answer

Azure Functions - ASP.NET Webforms app deployment

I can't find an example code for publishing ASP.NET Webforms websites to Azure Functions. Months ago I tried to replicate the C# example but I ended up with only being able to use the precompiled batch function type. I want to publish VB.NET web…
0
votes
1 answer

The configuration file 'config.json' was not found and is not optional

I use Azure Functions v2 I try to create Startup file: [assembly: FunctionsStartup(typeof(AzureAppDomainRegistration.Startup))] namespace AzureAppDomainRegistration { public class Startup : FunctionsStartup { public override void…
Oleg Sh
  • 8,496
  • 17
  • 89
  • 159
0
votes
0 answers

How to debug a python function app using a virtual envrionment

I'm trying to do a basic thing: debug a python function app using a virtual environment. The Visual Studio code documentation does not indicate how to do and I cannot figure it out myself: https://code.visualstudio.com/docs/python/debugging I run…
Anthony Brenelière
  • 60,646
  • 14
  • 46
  • 58
0
votes
1 answer

Access Azure Storage from C# Azure Function

I am trying to access content from the Blob Storage from an Azure function. I have the following: #r "Newtonsoft.Json" using System.Net; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Primitives; using Newtonsoft.Json; using…
kyuz0
  • 101
  • 4
0
votes
1 answer

Azure Function App - Python - Single connection without re-initializing

I am using Python Function App that is triggered by service bus queue to store the data in SQL Server. I need to handle connection with SQL Server. I found this link. Specifically, people often initiate a connection outside of main function, then…
0
votes
2 answers

Azure Functions: Function started lag time on App Service plan

We are experiencing a performance issue on Azure functions under load where there is a lag time between the call to the Azure function and the code in the function executing. The first log entry for the Azure function call in Application insights…
Vivek Ayer
  • 1,135
  • 11
  • 13
0
votes
1 answer

How to run Azure Function as administrator?

I have a .NET project which requires administrator permissions to run. I have converted it to Azure Function App consisting of multiple functions and running it in Azure. It seems like it is not running as administrator because I am getting the…
moirK
  • 651
  • 3
  • 11
  • 34
0
votes
1 answer

Unable to call Azure Function App method Api url in c# code

I am trying to get data from Azure function APP method (this Get API URL returns the data when directly entered in browser), but failing when I am trying to call this URL in my C# code with following inner exception: InnerException {"Unable to…
user1400290
  • 1,682
  • 5
  • 23
  • 43
0
votes
0 answers

Terraform with Azure - Function app does work within the Azure portal but not with Terraform code

I am using Terraform with Azure to create a function app to demonstrate a webapp (Pi Calculator with nodejs). When creating a Function App within the portal of Azure it works; using the settings like below. Function App Azure Settings Afterwards I…
0
votes
1 answer

How to reuse AD authentication from app service in azure function?

I'm trying to utilize built-in Azure App Service / Function AD authentication for access control. I'd like to use the same authentication for both the app service (which is a UI SPA app) and the function (HTTP trigger) so that users only need to log…