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 Service Bus Function Not Running

I have a function set up with ServiceBusTrigger which runs when it is deployed and then keeps running while I'm testing and sending messages to a topic. However, if I wait an hour or so and then send more messages they are not processed until I…
Joe
  • 5,389
  • 7
  • 41
  • 63
0
votes
2 answers

How to hide Azure Function URL?

So I just created an Azure Function that is triggered by Azure Blob Storage upload. There is no HTTP trigger. Why does this app have a PUBLIC-FACING URL? How do I disable it? Is there any kind of security mitigation…
SeaDude
  • 3,725
  • 6
  • 31
  • 68
0
votes
3 answers

Unable to deploy Azure Function with Premium Service Plan

When I try to create a FunctionApp Premium Plan using the following commands: # Create a Resource Group az group create \ --name $rg_name \ --location $az_loc # Create a Function App Storage Account az storage account create \ --name…
SeaDude
  • 3,725
  • 6
  • 31
  • 68
0
votes
1 answer

How to use AddAzureWebAppDiagnostics with IFunctionsHostBuilder

I have the following Startup class for azure function: public class Startup : FunctionsStartup { public override void Configure(IFunctionsHostBuilder builder) { //some code } } How could I inject here…
SimonD
  • 1,441
  • 2
  • 18
  • 30
0
votes
1 answer

Is there a way to specify custom arguments to docker run command executing inside Azure functions

I'm trying to deploy a custom image to an azure function and I have a requirement of modifying /etc/hosts file inside the container. I've tried giving --add-host argument at the docker build stage but it doesn't help. And as it is an azure function,…
0
votes
1 answer

Azure Service Bus Queue Trigger Function MessageReceiver error, The operation was canceled

Azure Service Bus Queue Trigger Function randomly throwing operation canceled exception. This exception is not thrown from code, looks like something wrong when azure function trying to receive messages from service bus queue, but not sure. Any help…
Shri
  • 351
  • 3
  • 16
0
votes
1 answer

Azure Function App - How to defer and re-receive an unprocessable message

I have the following Azure architecture: IoTDevices ---> IoTHub ---> Function App where: IoTDevices: collect sensor data and send them to IoTHub IoTHub: receives the data from devices and delivers those data to Function App (using Event…
Giacomo Pirinoli
  • 548
  • 6
  • 17
0
votes
1 answer

Azure Function App & Event Hub Messages - Function Stopped Working

I have created a function with an Event Hub Trigger. It has been working as expected until today. import logging import datetime import json import azure.functions as func def main(event: func.EventHubEvent, msg: func.Out[func.QueueMessage]): …
0
votes
1 answer

Azure Queue Send Message Method Expiry

New to Azure and testing Azure Queues . I attempted sending a message to the Queue with the Python SDK . Here is the method that I'm calling from azure.storage.queue import QueueServiceClient, QueueClient,…
0
votes
1 answer

Azure function app: "Microsoft.ServiceBus cannot be found"

I want to use EventData class to read event message from iot hub but I keep getting error below regarding adding the namespace Microsoft.ServiceBus.Messaging Appreciate any help to identify what could be wrong? #r "Newtonsoft.Json" #r…
0
votes
1 answer

Application Insights in Azure Function App Core v2

I am trying to use the standard ILogger and make it log to Azure. First I added following to host file: { "version": "2.0", "Logging": { "ApplicationInsights": { "LogLevel": { "Default": "Trace", "System": "None", …
Thomas Segato
  • 4,567
  • 11
  • 55
  • 104
0
votes
1 answer

Getting error when using namespace 'System.Drawing'. asking me to use 'System.Drawing.Common' . how to do this in azure functions

i want to copy an image from one blob container to another one. I am using the system.drawing to process an image and watermark it. this is throwing an error. i am new to c# ,copied this code from internet. everything works except for the…
0
votes
1 answer

Azure HTTP Function -- Encountering issues when creating trigger with OneDrive file input-binding

So I have a requirement to process a file when it is uploaded to a particular folder in OneDrive. An Azure Function would be nice to use for this purpose. Here's what I see when trying to set this up in the Azure portal: Is it even possible to do…
0
votes
2 answers

Implications of separating Http Request-triggered Azure Functions by http verb

I'm still trying to learn about Azure Functions and best practices, but as I understand there are two ways to separate logic by http verb (GET, POST, etc.). Is there a standard or best practice that would prefer either of the two below methods? And…
0
votes
1 answer

Handle timeouts of Node Function Apps

I created an Azure Function App with a Node runtime, which works properly on local and manually created cloud environments. But when it becomes deployed via Azure Pipelines, it writes a message via context.log and seems working but finally it raises…