skip to Main Content

azure function in 'read only mode' – AzureDevops pipeline deployment from zip

I am deploying azure function using Azure Devops pipeline: https://learn.microsoft.com/en-us/azure/devops/pipelines/tasks/reference/azure-function-app-v1?view=azure-pipelines - task: AzureFunctionApp@1 displayName: 'Deploy functions to Function App' inputs: azureSubscription: Subscription appType: functionAppLinux appName: 'functionX' package: $(System.DefaultWorkingDirectory)/functions.zip resourceGroupName: $(resourcegroup) All works great and gets deployed no errors. The problem…

VIEW QUESTION

Get file names from azure blob storage

I'm using azure blobstorage in c#, is there a way, a method to get the list of files from a given specific folder? like get all file names inside this url https://prueba.blob.core.windows.net/simem/UAL/Dato%20de%20archivo%20prueba%20No1/2022/1/16 i know that using container.GetBlobs() i would get…

VIEW QUESTION

Azure Cosmos db monitoring metrics

Below is the total requests metric of various 'operationtype' against a particular cosmosdb collection. What does particularly "Execute" and "Readfeed" operation type mean? Below metrics does not cover the operations performed via stored procs as mentioned here, so how to…

VIEW QUESTION
Back To Top
Search