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

Function app not waiting for Promise returned from web3 contract.getpastevents

I am new to using function app as well as JS. Below is what i am trying to do : we have a internal quorum cluster using Azure blockchain service. we have deployed a contract on it and need to check the events for this contract. And in general, want…
0
votes
2 answers

Whitelist group for Azure Function Apps

We are building a number of Azure Function Apps, each function app by default has its own IP white list. We have multiple third parties that will consume these function apps. Each third party will likely have multiple IP addresses. Some function…
Jay
  • 878
  • 3
  • 12
  • 22
0
votes
1 answer

How do you toggle status of functions of a function app in a slot?

In Azure Functions (runtime version 2.x), I can use Azure CLI to toggle the state of a function (enable/disable) by using the command az functionapp config appsettings set --name $functionAppName --resource-group $resourceGroupName --settings…
Anthony Klotz
  • 567
  • 1
  • 5
  • 19
0
votes
1 answer

How can I use function app with SharePoint webhook?

I am working on SharePoint webhook using function app. I am using Using Azure Functions with SharePoint webhooks[Reference]. I created a function on Microsoft azure using function app, in which I got the default code as follow: public static async…
0
votes
1 answer

Azure Function Failing on portal with Exception: System.TimeoutException

I am new to Azure development and developed a function app I published my function app to Azure portal. It is working fine on my development machine but on portal it's throwing following exception (some times) The operation 'ScanLogs' with id…
shary.sharath
  • 649
  • 2
  • 14
  • 29
0
votes
1 answer

Deployment of python function to Azure function app

However python functions can be deployed from visual studio code to Azure function app, it can't be edited in the portal. For editing in the portal, i heard that we can use local git deployment. I searched in google but not getting on how to do…
Jegatheesan
  • 105
  • 2
  • 8
0
votes
1 answer

Azure functions proxies setting redirects to backendUri Url

I have azure function app, where I want to use proxy to show static page to the users(which is hosted on another domain) after accessing the function app link like example below https://myfunctionapp1.azurewebsites.net/ { "$schema":…
Kumari Dimple
  • 343
  • 2
  • 4
  • 14
0
votes
1 answer

Azure Storage to Azure SQL Server using FunctionApp

I have one Storage Account on Azure where I get lots of json files from somewhere. I am running an exe on my computer constantly to get the Json File and read the data from json and convert the data into table and upload it on an SQL Server database…
Ishrar
  • 105
  • 1
  • 7
0
votes
2 answers

EP1 instance costs in function App Premium Elastic Plan w.r.t. Scale-up and Scale-out settings

Can anyone please elaborate me the minimum and miximum price of below settings(for reference) while creating the FunctionApp in Premium Elastic plan(EP1). Q. How does Plan Scale out Minimum Instances, Maximum Burst and App Scale out Pre-Warmed…
Bikram
  • 483
  • 6
  • 16
0
votes
1 answer

Do we need to restart Azure Function App after updating minimum TLS Version via Portal or Powershell script

Do we need to restart Azure Function App after updating minimum TLS Version via Portal or Powershell script. Or does it internally restart after this change.
Divyesh
  • 23
  • 4
0
votes
1 answer

Function app works good in visual studio but after publishing it throws error when i call the function from logic apps

my Scenario: passing the JSON data to function app to do some business functions like converting the input JSON to the correct format, for this i have used foreach loops and creating a json string. the abopve scenario worked as expecting in local…
0
votes
1 answer

Azure Function Apps - maintain max batch size with maxDequeueCount

I have following host file: { "version": "2.0", "extensions": { "queues": { "maxPollingInterval": "00:00:02", "visibilityTimeout": "00:00:30", "batchSize": 16, "maxDequeueCount": 3, "newBatchThreshold": 8 } …
Thomas Segato
  • 4,567
  • 11
  • 55
  • 104
0
votes
1 answer

How to call two rest APIs in a Azure Function?

I'm trying to call two rest APIs (Azure Web Service APIs) in a Azure Function. I have written the below code but When I try to run it, the first API is only getting executed but the second one isn't. The Logic should be like if the first API gets a…
Rahul Dev
  • 141
  • 2
  • 17
0
votes
2 answers

How do I log results from an Azure Function App dependency?

I have an Azure Function App project with the following files: Startup.cs: Registers a dependency [assembly: FunctionsStartup(typeof(MyLoggingFunction.Startup))] namespace MyLoggingFunction { public class Startup : FunctionsStartup { …
Dave Mateer
  • 17,608
  • 15
  • 96
  • 149
0
votes
1 answer

Axios Azure function POST throwing error in NODEJS

I am using the following Code, Which throws error as shown below Executed 'Functions.TranslateFunction' (Failed, Id=4cc27692-14a1-4c22-b0b7-7615d9812950) [12/10/2019 10:40:06 AM] System.Private.CoreLib: Exception while executing function: …