Questions tagged [azure-performancecounters]

15 questions
9
votes
1 answer

Azure. ApplicationInsights. Inexplicable error messge in AI log

I have setup AppllicationInsights resource in Azure portal. There are 2 services writing to it: windows service on premise and service fabric service running on a local service fabric cluster. I am using TelemetryClient object in both services to…
3
votes
1 answer

Azure App Service: using PerformanceCounters

I am trying to setup my Azure Web App to include the use of a third party software, which seems to require access to PerformanceCounters. Locally this works fine, but when I run it in Azure I get the following error: [UnauthorizedAccessException:…
nforss
  • 1,258
  • 1
  • 17
  • 31
2
votes
0 answers

Async WebAPI + Entity Framework 6(AzureSQL) performance issues

We have a single WebAPI instance that performs CRUD operations on its AzureSQL using EF6. We have very low traffic (around 20 req/sec) and normally it takes around 15-150ms for each request. We consistently see that every 45 - 60 minutes that some…
1
vote
0 answers

How to measure the ACU (Azure Compute Unit) consumed during a performance evaluation?

Context: We are trying to measure the performance of an application running under an ASP (Azure Service Plan), we are evaluating it under P1V2 (refer the below image). We have 210 ACU available and by math it should be multiplied by 6/4 as per the…
1
vote
1 answer

some of Azure virtual machine custom performance counters are not being collected in log analytics

we want to collect some of the performance counters from the VMs and then query them in the Azure Logs. The basic Performance Counters are enabled but some of them were missing, so we used the custom Performance counters to add the rest. Most…
1
vote
1 answer

Azure SDK 2.7.1 Diagnostics configuration

I am using Visual Studio 2015. In order to configure diagnostics for my worker role for Azure SDK 2.7.1 I added diagnostics.wadcfgx file by right clicking on worker role in Azure project and selecting Add Diagnostic Configuration. The newly created…
0
votes
1 answer

How to get performance of a virtual machine in Azure?

I am trying to collect the Performance of a Virtual Machine like CPU Utilization, Available Memory, Logical Disk MB/s, and Logical Disk IOPS, which can be seen under Insights via console. I want to collect these data and save them into a CSV file.…
0
votes
1 answer

ADF Stored Procedure call takes too long

I have an Azure data factory loop activity that executes stored procedure on every iteration, passing 2 JSON objects as arguments. Stored procedure reads json objects with openJson function using cross apply few times .. and then constructs #temp…
0
votes
1 answer

Azure functions logging lots of performance counters on .net 7

I've got a docker based (linux) azure functions app running in Azure App service which we've recently updated to using .net 7. Since this update we've seen a massive spike in the amount of application insight logs for performance…
0
votes
1 answer

Azure Insights: webapp request time

I have enabled http request logging for my webapp in Azure insights. I don't understand there is such a large response time disparity between identical requests, received just a few seconds or a few minutes apart. A log example with three records: {…
0
votes
1 answer

need details regarding Azure monitoring

we have one question we have one vm hosted in azure do not have Insight enable. and while creation we do not enable log and diagnostic are off.so question is why we are able to see this can anyone tell from where the matrix are coming as…
0
votes
1 answer

Azure App service - User has insufficient permissions to collect Windows Performance Counters

We have hosted a .Net application as an Azure App Service. I am trying to install an APM called New Relic. I am stuck at this error. The executing user, IIS APPPOOL\XXX, has insufficient permissions to collect Windows Performance Counters. I…
wickjon
  • 900
  • 5
  • 14
  • 40
0
votes
1 answer

Service Fabric based ASP.NET Core site sending performance counters to Application Insights

I have a Service Fabric cluster that is hosting an ASP.NET Core website. I am also using Application Insights to analyze the performance of the website. In order to collect the metrics at runtime and forward them to Application Insights I have added…
0
votes
2 answers

SQL "Log Bytes Flushed/sec" counter from powershell Error

I am trying to calculate the type of AZURE SQL I need using this: http://dtucalculator.azurewebsites.net/ => http://dtucalculator.azurewebsites.net/Downloads/sql-perfmon.zip This is a PowerShell script that gets data from some counters from SQL but…
-1
votes
1 answer

Azure - How can I read cpu and memory of my web app?

I'm trying to read the CPU and Memory usage for my app using PerformanceCounters. code: PerformanceCounter cpuCounter; cpuCounter = new PerformanceCounter(); cpuCounter.CategoryName = "Processor"; cpuCounter.CounterName = "% Processor…
Leonardo
  • 10,737
  • 10
  • 62
  • 155