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
1
vote
1 answer

Problems with Azure Function App triggered by IoT Hub using Visual Studio Code

I want to develop an azure function to process D2C messages from IoT Hub. Previously I developed a function, coding directly on the portal, and I could see logs printed by the function for each message I send using a desktop app I developed. But I…
Jon
  • 891
  • 13
  • 32
1
vote
0 answers

Azure Function App suddenly stopped working

I have an Azure Function App that generates random names. Suddenly, it stopped working - the response is 403. I made no changes to code nor settings. When I go to Azure Portal, I see that the app is disabled (although individual functions are…
Bartosz
  • 4,406
  • 7
  • 41
  • 80
1
vote
1 answer

Azure CosmosDB: function app- how to update a document

I am new to Azure. I was wondering if I could get some help with updating an existing record via https trigger. Many solutions I find online are either creating a new record or updating complete document. I just want to update 2 properties in the…
TheDeveloper
  • 1,127
  • 1
  • 18
  • 55
1
vote
1 answer

Time-zone issue python function-app on Azure

I am running multiple python function apps through a standard service plan and I am not able to change the time-zone to the desired values. I am located in Amsterdam the Netherlands and have the changed the "WEBSITE_TIME_ZONE" to "W. Europe Standard…
1
vote
1 answer

Azure Python Function Import Workaround

Apologies if this has been asked before; it seems to be a bit of a recurring theme, but I'm keen to learn whether there is a better way to handle this situation than I am currently using. I am trying to identify the cleanest way to handle importing…
Indrid
  • 962
  • 4
  • 25
  • 39
1
vote
1 answer

Azure Function App proxy is removing the query string

A simple, simple proxy redirect to our www subdomain is resulting in the query string being stripped off. There is no reason for this. Taken this URL.. https://mydomain.ok/whatever?foo=something Should redirect…
Thomas Beauvais
  • 1,546
  • 2
  • 16
  • 30
1
vote
1 answer

Azure service bus deadletter queue message unable to stay in deadletter for longer time

I have Azure Main function app which processes coming messages from service bus. If exception occurs because of API is down then I push message into Dead Letter Queue. I have another azure Dead function app which continuously read DLQ and push back…
Neo
  • 15,491
  • 59
  • 215
  • 405
1
vote
2 answers

Function App which runs on schedule also need to run manually

I have requirement to develop Azure Function App which is able to run on schedule also when needed User can manually run it. Please share the view how I can implement it.
Swap
  • 45
  • 4
1
vote
1 answer

Using different time for same azure time trigger function

Can I trigger the same azure function for 2 different times say one for 9:30 AM and another for 5:00 PM everyday.
bippan
  • 239
  • 1
  • 2
  • 11
1
vote
1 answer

Express JS to Azure function API Migration

I'm migrating my Node Express JS App to Azure functions. I've more than 250 Routes in my application. I went through this microsoft link to shift from Node Express JS to Azure functions (solution repo). What I understood is that I'll have to create…
Kid101
  • 1,440
  • 11
  • 25
1
vote
2 answers

Using Azure-Cli to deploy an azure function to azure from Jenkins

I have created a docker container and generated final artifact of my azure function app code. Azure Cli is already installed in the container. Is it possible to deploy to Azure using Azure Cli and pass the credentials along? I tried the following…
Mori
  • 2,484
  • 5
  • 28
  • 45
1
vote
1 answer

Azure CLI cannot add auto-scale conditions in azure function apps

I am trying to make a script to add custom auto-scale rules from azure CLI on more than 20 function apps but unable to find any parameter for the same. My apps are all at Premium plan with separate App-service plans. I am trying to add scale-out…
tanz
  • 21
  • 2
1
vote
1 answer

Unable to backup Function/Web App using Azure Cli az webapp config backup create

I am facing an issue when executing the Azure Cli command to backup my Azure App Service: Cli Command : az webapp config backup create --resource-group --webapp-name --backup-name testbackup --container-url I generated a new SaS key to be passed…
1
vote
1 answer

Azure Function stops working when I use dependencies, works locally

I'm trying to setup an Azure Function, Linux based in consumption mode, Queue triggered. It works perfectly locally in debug (said every programmer ever), but when deploying nothing happens. I can't find any logs. I started over, uploaded an empty…
1
vote
1 answer

Local files in Azure Function

I am trying to access google drive using the azure function(time-triggered), it creates a token file during runtime when permissions are given to access the drive. It stores that file locally, and the azure function works fine locally. But when…
bippan
  • 239
  • 1
  • 2
  • 11