Questions tagged [azure-metrics-advisor]
16 questions
3
votes
1 answer
Azure App Service metrics aggregation for requests: why are Sum and Count different?
When looking at the metrics from our app services in Azure, I'm very confused at Sum and Count's aggregation metrics for requests. They should be the same, according to the MS tech doc.
Count: The number of measurements captured during the…

cateyes
- 5,208
- 2
- 24
- 31
1
vote
1 answer
How can i setup Metric alerts in Azure on an App Service?
I have set the metric 403 , which is when the App Service has stopped.
The issue is I dont seem to be getting any emails even though from another browser I try to hit the website and it says the site has stopped.
Is there a way I can test if…

Veronica
- 53
- 6
1
vote
1 answer
Access Microsoft.Storage/storageAccounts/blobServices metrics from code
I want to retrieve metrics related to Blob metric namespace from Azure Storage Account. I need to read the BlobCount value.
Initially I have tried like this:
var usedCapacityResults = await metricsClient.QueryResourceAsync(resourceId,…

Angela
- 477
- 1
- 10
- 20
1
vote
0 answers
Azure Log Analytics vs Azure Data Factory Analytics
I'd like to see the differences between those two solutions.
I need to store and analyze ADF metadata and SQL Database metadata.
Like pipeline errors, pipeline duration, pipeline parameters, sql table inserted, deleted records.
I'm testing Log…

inspiredd
- 195
- 2
- 11
1
vote
1 answer
Azure Alert on a Resource (Azure Logic App) is being triggered only once
I have an Azure Logic App running every 3 minutes. I'm intentionally failing the Logic App every time, to test the Alert functionality.
The status of the alert created is Enabled.
The condition is Whenever the count of runs failed is greater than or…

Aritra Sarkar
- 225
- 4
- 13
1
vote
0 answers
Using Azure Metrics Advisor with workout data
So I saw Azure Metrics advisor in Microsoft Ignite this year and decided to try to using it against some workout data that I had from Endomondo.
I uploaded 4 years of running data (only about 400 records) into an Azure SQL instance.
Then, I…

Irwin
- 12,551
- 11
- 67
- 97
0
votes
0 answers
What does Azure SQL MI space used Metrics value represents?
What is this metrics value means in Azure SQL MI ?
Does this value includes used space by the data or total space used including log files and other files?
I Am trying to understand this metric value.

Faisal Kayani
- 1
- 2
0
votes
0 answers
How can i know who changes ADLS permissions in ACLs
The issue revolves around Azure Data Lake Storage, there has been an user who has been modifying permissions in the ACL's folders and we need to find a way to know who that is. what i'm trying to do is in the Storage Accounts section from Azure…

AlexVargaz
- 3
- 1
0
votes
1 answer
Azure App Service Alerts Specific for HTTP 302 Response Code
I have a Azure App Service and I want to set up Alerts if the app responds back with HTTP 302(I need to capture this). I know there is a signal called HTTP 3xx but thats too broad because my app does use other 3xx codes in positive scenario. Is…

SSB
- 1
- 1
0
votes
1 answer
Get-AzMetrics giving Bad Request error when ResourceId provided belongs to an attached data disk(not VM ID)
I am trying to get the maximum value of Data Disk Read Bytes/Sec and Data Disk Write Bytes/Sec over a period of 30days for all the data disks (Premium SSD) in my subscription using Get-AzMetric.
I am getting below error when using the Get-AzMetric…

az_novice007
- 3
- 1
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.…

Saiyam Jain
- 1
- 1
0
votes
1 answer
How can i pull out all metrics for a resource in Azure using Powershell?
I am at the moment running the following Powershell scipt pull out metrics from Azure
` #login to azure and set context
$Resource = Get-AzResource -ResourceName -ResourceGroupName - ResourceType…

Veronica
- 53
- 6
0
votes
1 answer
How can i get the CPU usage for an Azure app service using Powershell?
I need to get some metrics for Azure an app service . Values are the CPU (in %) and Memory consumed ( in %). I want to report if for example the CPU is high for a certain period of time , in order to give an indication that the app service is…

Tracey
- 81
- 6
0
votes
3 answers
How to get the size of an azure storage account in Azure CLI or Bash Script?
I want to retrieve the size of an azure storage account without using the portal (metrics). How can I get the metrics of the storage account through azure CLI or bash script? Is there a way to make this through azure CLI or any bash scripts?

Sashin Sahasra
- 37
- 9
0
votes
1 answer
SQL query: How to select all following rows every time specific parameter acquires specific value
In my database, I have a table with 3 columns: datetime, parameter, value. My goal is to get a subset of the data. I want to get all rows coming after parameter = 'B' and value > 5 (include this row in the result set). Leave out all rows coming…

okone
- 3
- 2