Top "Azure-functions" questions

Azure Functions is an event-driven serverless compute platform in Azure and Azure Stack.

Azure functions local.settings.json represented in appsettings.json for a ServiceBusTrigger

I currently have an azure function using the ServiceBusTrigger binding [ServiceBusTrigger("%TopicName%", "%SubscripionName%", Connection = "MyConnection")] string catclogueEventMsgs, ILogger log, ExecutionContext …

c# azure azure-functions azureservicebus
Parse text in Azure Logic Apps

I want to create Azure Logic App which will constantly request a specific website on the Internet and parse received …

azure azure-functions azure-logic-apps workflow-definition-language
Azure application insights or log analytics

What is the use case for Azure application insights or log analytics? I am using APIM and Azure Functions and …

azure azure-functions azure-application-insights azure-log-analytics
Throttling Azure Storage Queue processing in Azure Function App

I have created an Azure Function app with an Azure Storage Queue trigger that processes a queue in which each …

azure azure-functions
Azure functions: Installing Python modules and extensions on consumption plan

I am trying to run a python script with Azure functions. I had success updating the python version and installing …

python azure virtual-machine azure-functions
Azure Functions - Shared classes

I want to use some shared classes on my Azure Functions to not duplicate code. I have tried to create …

c# azure azure-functions
azure functions: return json object

import logging import azure.functions as func def main(req: func.HttpRequest) -> func.HttpResponse: logging.info('Python HTTP …

azure-functions azure-functions-core-tools
Limiting the number of concurrent jobs on Azure Functions queue

I have a Function app in Azure that is triggered when an item is put on a queue. It looks …

azure azure-functions azure-queues
Azure Function timer configure through app settings

I am working on Azure functions timer Job , i need to get the cron expression from the appsettings. Please let …

c# azure azure-functions
How to read a CSV file line by line in Azure Logic App?

I have an Azure Logic app which picks a file from the Sharepoint site. In the next step, I want …

azure-functions azure-logic-apps