What is Log Analytics?
- Centralized log collection and query platform in Azure Monitor.
- Allows querying with Kusto Query Language (KQL) to analyze logs from App
Services, Functions, SQL, etc.
Example query:
requests
| where success == false
| summarize count() by operation_Name