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
2
votes
2 answers

Add metadata to traces in Azure functions

I have an Azure function(.NET core 2.0) that runs on each PR in an ADO repo. I would like to add the PR-ID as metadata to each trace logged by the Azure function. (I am viewing the logs using the traces table in Azure application insights…
2
votes
1 answer

Azure Functions: How do you use a POCO in a binding expression with Azure Storage Queue?

I've got an Azure Function defined that uses an Azure Storage Queue Trigger and Blob input bindings. I've got a POCO for the queue trigger but how can I use that POCO with a binding expression in the blob input binding? Architecuture: Azure…
2
votes
1 answer

I need to give permissions to Azure Function

I have created a new Azure Function and I want to give permissions to an AD User for run it by https. How can I do it? Any ideas?
exitista
  • 563
  • 2
  • 10
  • 21
2
votes
2 answers

Is there a way to increase function app timeout threshold from 30 minutes(default) to 2 hours ? We are in App Service plan

I have an Azure function-app which is running in App Service plan. I do have long running processes which makes the host to go down (host gets shut-downed). I have tried 2 approaches. Changed the functionTimeout value in host.json to "02:00:00" -…
2
votes
0 answers

How to invoke some code logic in azure function app v2 startup

I am building a function app v2.0 with service bus trigger. I have the startup class implemented, but want to know the better way of calling a method which is in a class (with dependencies injected) that should run in startup after all the…
2
votes
1 answer

Send Email From Azure Function App Without using SendGrid and Office 365

I need to send an email from Azure Function app without using sendgrid and office365. By using outlook and Gmail smtp, the function is giving errors using System; using System.Text; using System.Net; using System.Net.Mail; using…
2
votes
0 answers

Unable to establish connection between on IaaS Sql server and Function App in azure

Unable to establish a connection between IaaS Sql server and function App. I am getting SSL Key exception I am trying to run a function in azure functions that were created in java. I establish the DB connection with the help of sqljdbc4.jar. This…
Balki
  • 41
  • 2
2
votes
0 answers

How to manage CI/CD for custom container Azure functions with ACR

I'm working with Azure functions and ACR (azure container registry) to deploy a custom docker image, when I'm deploying for the first time, it works, with az functionapp create command, but the function will not update for the image, unless I give…
Liron Navon
  • 1,068
  • 1
  • 11
  • 22
2
votes
0 answers

Getting ExecutionContext in other libraries/projects in Azure Function App

The execution context that is injected to a function (https://github.com/Azure/azure-functions-host/wiki/Retrieving-information-about-the-currently-running-function), is it possible to get it in some other helper libraries. I want to get the…
2
votes
0 answers

HTTP 500 error when importing Meraki SDK into python Azure function app

When I import Meraki: from meraki.meraki import Meraki it causes a HTTP 500 error. This works as expected on my local machine but when uploaded to my Python Azure Function app it causes the HTTP 500 error. I suspect that this is because the Meraki…
grand2019
  • 562
  • 2
  • 6
  • 16
2
votes
0 answers

HTTP error 500 when importing additional files for a Python Azure function app

I am currently modifying the code from this tutorial, and am trying to import an additional file to __init__ "testsdk.py". Below is my current code within the __init__ file. import logging import testsdk import azure.functions as func def…
grand2019
  • 562
  • 2
  • 6
  • 16
2
votes
0 answers

Adding global custom telemetry initializer to Application Insights in Azure Function App

How do I add custom Global Telemetry initializer to logs sent to Application Insights from Azure Function Apps? In Azure App Services I could add them in the Configure section of the Startup.cs var defaultTelemetryConfig =…
2
votes
1 answer

Use SSL certificate in azure function app with nodejs

I uploaded a .pfx certificate to my function app. How do I load this certificate so I can use it in my Nodejs code? If I put it in the project directory I am able to use it and it works fine but I would like to avoid to have it in the…
Davide Bracaglia
  • 159
  • 1
  • 1
  • 12
2
votes
2 answers

How to find/cure source of function app throughput issues

I have an Azure function app triggered by an HttpRequest. The function app reads the request, tosses one copy of it into a storage table for safekeeping and sends another copy to a queue for further processing by another element of the system. I…
2
votes
1 answer

Azure function apps with Python one time initialization

I'm using Azure function apps with Python. I have two dozen function apps that all use a Postgres DB and Custom Vision. All function apps are setup as HttpTriggers. Right now, when a function is triggered, a new database handler (or custom vision…
wasp256
  • 5,943
  • 12
  • 72
  • 119