Questions tagged [azure-monitor]

147 questions
10
votes
3 answers

How do I print a tree using the Kusto Query Language?

Below is a quick and unglamorous solution. If you have a better one, please include it in your answer. let tree_height = 15; range i from -1 to tree_height * 2 step 2 | extend side_width = tree_height + 1 - i / 2 | extend side_space = strrep(" ",…
6
votes
1 answer

Application Insights Map not connected between Angular SPA and .Net 6 API

I have an Angular 13 SPA which calls my .Net 6 API which then calls a Database. For now the whole system is running on my local machine. I added the Application Insights JS SDK and the Angular Plugin to my SPA and initialized…
wertzui
  • 5,148
  • 3
  • 31
  • 51
4
votes
1 answer

How to create azure monitor alert when my disk space low in virtual machine

I have one virtual machine . Now I want if my disk space showing very low I mean less than 2 gb. Then I want to trigger azure monitor alerts and want to get Email regarding this. is there any metrics azure monitor provide.
DnyaneshSurya
  • 187
  • 1
  • 1
  • 14
2
votes
1 answer

Insights Vs Diagnostic Settings in Azure Monitor

In Azure Monitor, there is a section called Insights that allows us to configure some kind of monitoring on a chosen set of resources like Applications, VMs, Storage Accounts, Containers etc. There is also a section called Diagnostic Settings that…
Minura Punchihewa
  • 1,498
  • 1
  • 12
  • 35
2
votes
1 answer

Failure sending request: StatusCode=404 -- Original Error: Code="ArtifactNotFound"

I'm trying to add AzureMonitor to one of my VM's with terraform, but I'm getting the followin error: Error: compute.VirtualMachineExtensionsClient#CreateOrUpdate: Failure sending request: StatusCode=404 -- Original Error: Code="ArtifactNotFound"…
Igor Meszaros
  • 2,081
  • 2
  • 22
  • 46
2
votes
1 answer

workspace-based application insight pricing calculator

I am planning to use the Azure Monitor service and specifically Workspace-based Application Insights for the client's project. Before I purpose/implement Workspace-based Application Insights, I need to share the estimated cost with the client so I…
2
votes
2 answers

azure monitor to alert on low space on /root , /var and /etc

I have Azure Linux VMs for which i want to configure Azure-Monitor Alerts when my /root,/etc and /var volumes are more than 90% utilized. Please suggest way to achieve this.
2
votes
1 answer

What is the difference between AzureMonitorTraceExporter and AzureMonitorSpanExporter?

from azure.core.settings import settings from azure.core.tracing.ext.opentelemetry_span import OpenTelemetrySpan settings.tracing_implementation = OpenTelemetrySpan from opentelemetry import trace from opentelemetry.sdk.trace import…
2
votes
1 answer

Find max and min values in a column which is a result of summary operation

I am trying to find out a way to calculate the maximum and minimum values of a column. Using the query below, I first calculate the (requests per minute) RPM by using the summary operation and then want to pick max and min values for the RPM…
2
votes
1 answer

Azure monitor alert multiple subscriptions

I need to create multiple azure monitor alarms. I'm trying to do this following this website: https://www.azureblue.io/how-to-create-an-alert-rule-using-powershell-and-azure-cli/ This solution works for me if I have action group and target resources…
19Kris88
  • 31
  • 1
2
votes
1 answer

Cannot customize Azure monitor alerts Email Subject

We are creating azure monitor alerts through terraform using below code. There is a field azurerm provides to customize email subject. But it never seems to work. The email subject always has something like "Fired: Sev4 Azure Monitor Alert…
Jawahar
  • 4,775
  • 1
  • 24
  • 47
2
votes
1 answer

Is it possible to not sample particular requests in Application Insights?

I have a question about Azure Application Insights Sampling. I do require sampling at 10%, which I know I can achieve easily on Application Insights using applicationinsights.json. But I also have a use case where I do not want to sample (filter…
Optimus Prime
  • 6,817
  • 5
  • 32
  • 60
1
vote
1 answer

Bicep script to create "Managed Private Endpoint" to access Azure Monitor Workspace privately

My goal is to enable Azure Managed Grafana to access an Azure Monitor account which doesn't have a public endpoint and hence should be accessed privately. I figured through this documentation that a "Managed Private Endpoint" is what I need and I…
1
vote
1 answer

How to monitor uptime of a Kubernetes service which is not public in Azure AKS

I have a deployment with multiple pods in Azure Kubernetes Service. There is a K8s service that is used to connect deployment pods. The service has a private IP accessible in Azure Virtual Network. The service type is LoadBalancer. I want to monitor…
Fuat Ulugay
  • 521
  • 2
  • 14
1
vote
2 answers

HTTP Data Collector API vs Logs Ingestion API

Can someone help me understand the difference between the HTTP Data Collector API vs Logs Ingestion API for ingesting data pipeline logs into azure monitor/azure log analytics workbench? Which is advised to measure performance of a databricks…
1
2 3
9 10