Microsoft Docs

Azure Monitor Logs

Azure Monitor Logs provides a powerful and flexible solution for collecting, analyzing, and acting on telemetry from your cloud and on-premises environments. It helps you understand performance, diagnose issues, and secure your applications and infrastructure.

Key Features and Capabilities

Getting Started with Log Analytics

Learn how to set up a Log Analytics workspace, configure data collection, and start querying your logs.

Start your first query | Configure data sources

Common Use Cases

Example KQL Query

This query shows the count of errors in the last 24 hours from a specific application:


Heartbeat
| where TimeGenerated > ago(24h)
| where Computer == "MyServer01"
| summarize count() by Category
            

For more advanced queries and scenarios, please refer to the official Kusto Query Language documentation.

Resources