Skip to content

Commit f270c21

Browse files
committed
Reinstating monitor azure resources article
1 parent 607a3f2 commit f270c21

File tree

3 files changed

+109
-5
lines changed

3 files changed

+109
-5
lines changed

.openpublishing.redirection.azure-monitor.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6269,11 +6269,6 @@
62696269
"redirect_url": "/azure/azure-monitor/data-sources",
62706270
"redirect_document_id": false
62716271
},
6272-
{
6273-
"source_path_from_root": "/articles/azure-monitor/essentials/monitor-azure-resource.md",
6274-
"redirect_url": "/azure/azure-monitor/overview",
6275-
"redirect_document_id": false
6276-
},
62776272
{
62786273
"source_path_from_root": "/articles/azure-monitor/essentials/resource-logs-categories.md",
62796274
"redirect_url": "/azure/azure-monitor/reference/supported-logs/logs-index",
Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
---
2+
title: Monitor Azure resources with Azure Monitor | Microsoft Docs
3+
description: This article describes how to collect and analyze monitoring data from resources in Azure by using Azure Monitor.
4+
ms.topic: conceptual
5+
author: bwren
6+
ms.author: bwren
7+
ms.date: 07/17/2023
8+
ms.reviewer: robb
9+
10+
---
11+
12+
# Monitor Azure resources with Azure Monitor
13+
14+
When you have critical applications and business processes that rely on Azure resources, you want to monitor those resources for their availability, performance, and operation. Azure Monitor is a full-stack monitoring service that provides a complete set of features to monitor your Azure resources. You can also use Azure Monitor to monitor resources in other clouds and on-premises.
15+
16+
In this article, you learn about:
17+
18+
> [!div class="checklist"]
19+
> * Azure Monitor and how it's integrated into the portal for other Azure services.
20+
> * The types of data collected by Azure Monitor for Azure resources.
21+
> * Azure Monitor tools that are used to collect and analyze data.
22+
23+
> [!NOTE]
24+
> This article describes Azure Monitor concepts and walks you through different menu items. To jump right into using Azure Monitor features, start with [Analyze metrics for an Azure resource](../essentials/tutorial-metrics.md).
25+
26+
## Monitoring data
27+
28+
This section discusses collecting and monitoring data.
29+
30+
### Azure Monitor data collection
31+
32+
As soon as you create an Azure resource, Azure Monitor is enabled and starts collecting metrics and activity logs. With some configuration, you can gather more monitoring data and enable other features. The Azure Monitor data platform is made up of Metrics and Logs. Each feature collects different kinds of data and enables different Azure Monitor features.
33+
34+
- [Azure Monitor Metrics](../essentials/data-platform-metrics.md) stores numeric data from monitored resources into a time-series database. The metric database is automatically created for each Azure subscription. Use [Metrics Explorer](../essentials/tutorial-metrics.md) to analyze data from Azure Monitor Metrics.
35+
- [Azure Monitor Logs](../logs/data-platform-logs.md) collects logs and performance data where they can be retrieved and analyzed in different ways by using log queries. You must create a Log Analytics workspace to collect log data. Use [Log Analytics](../logs/log-analytics-tutorial.md) to analyze data from Azure Monitor Logs.
36+
37+
### Monitoring data from Azure resources
38+
39+
While resources from different Azure services have different monitoring requirements, they generate monitoring data in the same formats so that you can use the same Azure Monitor tools to analyze all Azure resources.
40+
41+
Diagnostic settings define where resource logs and metrics for a particular resource should be sent. Possible destinations are:
42+
43+
- [Activity log](./platform-logs-overview.md): Subscription-level events that track operations for each Azure resource, for example, creating a new resource or starting a virtual machine. Activity log events are automatically generated and collected for viewing in the Azure portal. You can create a diagnostic setting to send the activity log to Azure Monitor Logs.
44+
- [Platform metrics](../essentials/data-platform-metrics.md): Numerical values that are automatically collected at regular intervals and describe some aspect of a resource at a particular time. Platform metrics are automatically generated and collected in Azure Monitor Metrics.
45+
- [Resource logs](./platform-logs-overview.md): Provide insight into operations that were performed by an Azure resource. Operation examples might be getting a secret from a key vault or making a request to a database. Resource logs are generated automatically, but you must create a diagnostic setting to send them to Azure Monitor Logs.
46+
- [Virtual machine guest metrics and logs](): Performance and log data from the guest operating system of Azure virtual machines. You must install an agent on the virtual machine to collect this data and send it to Azure Monitor Metrics and Azure Monitor Logs.
47+
48+
## Menu options
49+
50+
You can access Azure Monitor features from the **Monitor** menu in the Azure portal. You can also access Azure Monitor features directly from the menu for different Azure services. Different Azure services might have slightly different experiences, but they share a common set of monitoring options in the Azure portal. These menu items include **Overview** and **Activity log** and multiple options in the **Monitoring** section of the menu.
51+
52+
:::image type="content" source="media/monitor-azure-resource/menu-01.png" lightbox="media/monitor-azure-resource/menu-01.png" alt-text="Screenshot that shows the Overview and Activity log menu items.":::
53+
54+
:::image type="content" source="media/monitor-azure-resource/menu-02.png" lightbox="media/monitor-azure-resource/menu-02.png" alt-text="Screenshot that shows the Monitoring menu.":::
55+
56+
## Overview page
57+
58+
The **Overview** page includes details about the resource and often its current state. For example, a virtual machine shows its current running state. Many Azure services have a **Monitoring** tab that includes charts for a set of key metrics. Charts are a quick way to view the operation of the resource. You can select any of the charts to open them in Metrics Explorer for more detailed analysis.
59+
60+
To learn how to use Metrics Explorer, see [Analyze metrics for an Azure resource](../essentials/tutorial-metrics.md).
61+
62+
:::image type="content" source="media/monitor-azure-resource/overview-page.png" lightbox="media/monitor-azure-resource/overview-page.png" alt-text="Screenshot that shows the Overview page.":::
63+
64+
### Activity log
65+
66+
The **Activity log** menu item lets you view entries in the [activity log](../essentials/activity-log.md) for the current resource.
67+
<!-- convertborder later -->
68+
:::image type="content" source="media/monitor-azure-resource/activity-log.png" lightbox="media/monitor-azure-resource/activity-log.png" alt-text="Screenshot that shows an activity log." border="false":::
69+
70+
## Alerts
71+
72+
The **Alerts** page shows you any recent alerts that were fired for the resource. Alerts proactively notify you when important conditions are found in your monitoring data and can use data from either Metrics or Logs.
73+
74+
To learn how to create alert rules and view alerts, see [Create a metric alert for an Azure resource](../alerts/tutorial-metric-alert.md) or [Create a log search alert for an Azure resource](../alerts/tutorial-log-alert.md).
75+
76+
:::image type="content" source="media/monitor-azure-resource/alerts-view.png" lightbox="media/monitor-azure-resource/alerts-view.png" alt-text="Screenshot that shows the Alerts page.":::
77+
78+
## Metrics
79+
80+
The **Metrics** menu item opens [Metrics Explorer](./metrics-getting-started.md). You can use it to work with individual metrics or combine multiple metrics to identify correlations and trends. This is the same Metrics Explorer that opens when you select one of the charts on the **Overview** page.
81+
82+
To learn how to use Metrics Explorer, see [Analyze metrics for an Azure resource](../essentials/tutorial-metrics.md).
83+
<!-- convertborder later -->
84+
:::image type="content" source="media/monitor-azure-resource/metrics.png" lightbox="media/monitor-azure-resource/metrics.png" alt-text="Screenshot that shows Metrics Explorer." border="false":::
85+
86+
## Diagnostic settings
87+
88+
The **Diagnostic settings** page lets you create a [diagnostic setting](../essentials/diagnostic-settings.md) to collect the resource logs for your resource. You can send them to multiple locations, but the most common use is to send them to a Log Analytics workspace so you can analyze them with Log Analytics.
89+
90+
To learn how to create a diagnostic setting, see [Collect and analyze resource logs from an Azure resource](../essentials/tutorial-resource-logs.md).
91+
92+
:::image type="content" source="media/monitor-azure-resource/diagnostic-settings.png" lightbox="media/monitor-azure-resource/diagnostic-settings.png" alt-text="Screenshot that shows the Diagnostic settings page.":::
93+
94+
## Insights
95+
96+
The **Insights** menu item opens the insight for the resource if the Azure service has one. [Insights](../insights/insights-overview.md) provide a customized monitoring experience built on the Azure Monitor data platform and standard features.
97+
98+
For a list of insights that are available and links to their documentation, see [Insights](../insights/insights-overview.md) and [core solutions](/previous-versions/azure/azure-monitor/insights/solutions).
99+
<!-- convertborder later -->
100+
:::image type="content" source="media/monitor-azure-resource/insights.png" lightbox="media/monitor-azure-resource/insights.png" alt-text="Screenshot that shows the Insights page." border="false":::
101+
102+
## Next steps
103+
104+
Now that you have a basic understanding of Azure Monitor, get started analyzing some metrics for an Azure resource.
105+
106+
> [!div class="nextstepaction"]
107+
> [Analyze metrics for an Azure resource](../essentials/tutorial-metrics.md)

articles/azure-monitor/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ items:
3131
items:
3232
- name: Monitor an Azure resource
3333
items:
34+
- name: Use Azure Monitor to monitor an Azure resource
35+
href: essentials/monitor-azure-resource.md
3436
- name: Analyze metric data
3537
href: essentials/tutorial-metrics.md
3638
- name: Collect and view resource logs

0 commit comments

Comments
 (0)