You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-monitor/logs/data-collection-troubleshoot.md
+24-6Lines changed: 24 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ This article explains how to detect when data collection in Azure Monitor stops
15
15
16
16
The [daily cap](daily-cap.md) limits the amount of data that a Log Analytics workspace can collect in a day. When the daily cap is reached, data collection stops until the reset time. You can either wait for collection to automatically restart, or increase the daily data volume limit.
17
17
18
-
### How to check the data collection status
18
+
### Check Log Analytics workspace data collection status
19
19
20
20
When data collection in a Log Analytics workspace stops, an event with a type of **Operation** is created in the workspace. Run the following query to check whether you're reaching the daily limit and missing data:
21
21
@@ -30,27 +30,45 @@ To be notified when data collection stops, use the steps described in the [Alert
30
30
## Daily ingestion limitation in the legacy free pricing tier
31
31
If your Log Analytics workspace is in the [legacy Free pricing tier](cost-logs.md#legacy-pricing-tiers) and has collected more than 500 MB of data in a day, data collection stops for the rest of the day. Wait until the following day for collection to automatically restart, or change to a paid pricing tier.
32
32
33
-
## Workspace reached the data ingestion volume rate
34
-
The [default ingestion volume rate limit](../service-limits.md#log-analytics-workspaces) for data sent from Azure resources using diagnostic settings is approximately 6 GB/min per workspace. This is an approximate value because the actual size can vary between data types, depending on the log length and its compression ratio. This limit doesn't apply to data that's sent from agents or the [Data Collector API](data-collector-api.md).
33
+
## Workspace reached the data ingestion volume rate limit
34
+
The [default ingestion volume rate limit](../service-limits.md#log-analytics-workspaces) for data sent from Azure resources using diagnostic settings is approximately 6 GB/min per workspace. This is an approximate value because the actual size can vary between data types, depending on the log length and its compression ratio. This limit doesn't apply to data that's sent from agents or the [Logs ingestion API](logs-ingestion-api-overview.md).
35
35
36
-
If you send data at a higher rate to a single workspace, some data is dropped, and an event is sent to the **Operation** table in your workspace every 6 hours while the threshold continues to be exceeded. If your ingestion volume continues to exceed the rate limit or you are expecting to reach it sometime soon, you can request an increase to your workspace by sending an email to [email protected] or by opening a support request.
36
+
If you send data at a higher rate to a single workspace, some data is dropped, and an event is sent to the **Operation** table in your workspace every six hours while the threshold continues to be exceeded. If your ingestion volume continues to exceed the rate limit or you are expecting to reach it sometime soon, you can request an increase to your workspace by sending an email to [email protected] or by opening a support request.
37
37
38
-
Use the following query to retrieve the record that indicates the data ingestion rate limit was reached.
38
+
### Check whether your workspace reached its data ingestion rate limit
39
+
40
+
Use this query to retrieve the record that indicates the data ingestion rate limit was reached.
39
41
40
42
```kusto
41
43
Operation
42
44
| where OperationCategory == "Ingestion"
43
45
| where Detail startswith "The rate of data crossed the threshold"
44
46
```
45
47
48
+
## Azure Monitor Agent is not sending data
49
+
50
+
[Azure Monitor Agent](../agents/azure-monitor-agent-overview.md) collects data from virtual machines and sends the data to Azure Monitor. An agent might stop sending data to your Log Analytics workspace in various scenarios. For example, when [Azure Site Recovery](/azure/site-recovery/site-recovery-overview) recovers a virtual machine in a disaster recovery scenario, the resource ID of the machine changes, requiring reinstallation of Azure Monitor Agent on the machine.
51
+
52
+
### Check the health of agents sending data to your workspace
53
+
54
+
Azure Monitor Agent instances installed on all virtual machines that send data to your Log Analytics workspace send a heartbeat to the [Heartbeat table](/azure/azure-monitor/reference/tables/heartbeat) every minute.
55
+
56
+
Run this query to list VMs that have not reported a heartbeat in the last five minutes:
57
+
58
+
```kusto
59
+
Heartbeat
60
+
| where TimeGenerated > ago(24h)
61
+
| summarize LastCall = max(TimeGenerated) by Computer, _ResourceId
62
+
| where LastCall < ago(5m)
63
+
```
64
+
46
65
## Azure subscription is in a suspended state
47
66
Your Azure subscription could be in a suspended state for one of the following reasons:
48
67
49
68
- Free trial ended
50
69
- Azure pass expired
51
70
- Monthly spending limit reached (such as on an MSDN or Visual Studio subscription)
52
71
53
-
54
72
## Other Log Analytics workspace limitations
55
73
56
74
There are other Log Analytics limits, some of which depend on the Log Analytics pricing tier. These are documented at [Azure subscription and service limits, quotas, and constraints](../service-limits.md#log-analytics-workspaces).
0 commit comments