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/platform/manage-cost-storage.md
+12-7Lines changed: 12 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,16 +29,21 @@ In this article we review how you can proactively monitor ingested data volume a
29
29
30
30
The default pricing for Log Analytics is a **Pay-As-You-Go** model based on data volume ingested and optionally for longer data retention. Data volume is measured as the size of the data that will be stored. Each Log Analytics workspace is charged as a separate service and contributes to the bill for your Azure subscription. The amount of data ingestion can be considerable depending on the following factors:
31
31
32
-
- Number of management solutions enabled and their configuration (e.g.
32
+
- Number of management solutions enabled and their configuration
33
33
- Number of VMs monitored
34
34
- Type of data collected from each monitored VM
35
35
36
36
In addition to the Pay-As-You-Go model, Log Analytics has **Capacity Reservation** tiers which enable you to save as much as 25% compared to the Pay-As-You-Go price. The capacity reservation pricing enables you to buy a reservation starting at 100 GB/day. Any usage above the reservation level will be billed at the Pay-As-You-Go rate. The Capacity Reservation tiers have a 31-day commitment period. During the commitment period, you can change to a higher level Capacity Reservation tier (which will restart the 31-day commitment period), but you cannot move back to Pay-As-You-Go or to a lower Capacity Reservation tier until after the commitment period is finished. Billing for the Capacity Reservation tiers is done on a daily basis. [Learn more](https://azure.microsoft.com/pricing/details/monitor/) about Log Analytics Pay-As-You-Go and Capacity Reservation pricing.
37
37
38
38
In all pricing tiers, the data volume is calculated from a string representation of the data as it is prepared to be stored. Several [properties common to all data types](https://docs.microsoft.com/azure/azure-monitor/platform/log-standard-properties) are not included in the calculation of the event size, including `_ResourceId`, `_ItemId`, `_IsBillable` and `_BilledSize`.
39
39
40
-
Also, note that Some solutions, such as [Azure Security Center](https://azure.microsoft.com/pricing/details/security-center/)
41
-
and [Azure Sentinel](https://azure.microsoft.com/pricing/details/azure-sentinel/), have their own pricing model.
40
+
Also, note that some solutions, such as [Azure Security Center](https://azure.microsoft.com/pricing/details/security-center/), [Azure Sentinel](https://azure.microsoft.com/pricing/details/azure-sentinel/) and [Configuration management](https://azure.microsoft.com/en-us/pricing/details/automation/) have their own pricing models.
41
+
42
+
### Dedicated Clusters
43
+
44
+
Azure Monitor Log Dedicated Clusters are collections of workspaces into a single managed Azure Data Explorer (ADX) cluster to support advanced scenarios such as [Customer-Managed Keys](https://docs.microsoft.com/en-us/azure/azure-monitor/platform/customer-managed-keys). Dedicated Clusters support only a Capacity Reservation pricing model starting at 1000 GB/day with a 25% discount compared to Pay-As-You-Go pricing. Any usage above the reservation level will be billed at the Pay-As-You-Go rate. The cluster Capacity Reservation has a 31-day commitment period after the reservation level is increased. During the commitment period the capacity reservation level cannot be reduced, but it can be increased at any time. Learn more about [creating a Dedicated Clusters](https://docs.microsoft.com/en-us/azure/azure-monitor/platform/customer-managed-keys#create-cluster-resource) and [associating workspaces to it](https://docs.microsoft.com/en-us/azure/azure-monitor/platform/customer-managed-keys#workspace-association-to-cluster-resource).
45
+
46
+
Because the billing for ingested data is done at the cluster level, workspaces associated to a cluster no longer have a pricing tier. The ingested data quantities from each workspace associated to a cluster is aggregated to calculate the daily bill for the cluster. Note that per-node allocations from Azure Security Center are applied at the workspace level prior to this aggregation. Data retention is still billed at the workspace level.
42
47
43
48
## Estimating the costs to manage your environment
44
49
@@ -173,15 +178,15 @@ Soon after the daily limit is reached, the collection of billable data types sto
173
178
174
179
### Identify what daily data limit to define
175
180
176
-
Review [Log Analytics Usage and estimated costs](usage-estimated-costs.md) to understand the data ingestion trend and what is the daily volume cap to define. It should be considered with care, since you won�t be able to monitor your resources after the limit is reached.
181
+
Review [Log Analytics Usage and estimated costs](usage-estimated-costs.md) to understand the data ingestion trend and what is the daily volume cap to define. It should be considered with care, since you won?t be able to monitor your resources after the limit is reached.
177
182
178
183
### Set the Daily Cap
179
184
180
185
The following steps describe how to configure a limit to manage the volume of data that Log Analytics workspace will ingest per day.
181
186
182
187
1. From your workspace, select **Usage and estimated costs** from the left pane.
183
188
2. On the **Usage and estimated costs** page for the selected workspace, click **Data volume management** from the top of the page.
184
-
3. Daily cap is **OFF** by default � click **ON** to enable it, and then set the data volume limit in GB/day.
189
+
3. Daily cap is **OFF** by default ? click **ON** to enable it, and then set the data volume limit in GB/day.
185
190
186
191

187
192
@@ -242,7 +247,7 @@ union withsource = tt *
242
247
```
243
248
244
249
> [!TIP]
245
-
> Use these `union withsource = tt *` queries sparingly as scans across data types are expensive to execute. This query replaces the old way of querying per-computer information with the Usage data type.
250
+
> Use these `union withsource = tt *` queries sparingly as scans across data types are [resource intensive](https://docs.microsoft.com/en-us/azure/azure-monitor/log-query/query-optimization#query-performance-pane) to execute. This query replaces the old way of querying per-computer information with the Usage data type.
246
251
247
252
## Understanding ingested data volume
248
253
@@ -451,7 +456,7 @@ To facilitate this assessment, the following query can be used to make a recomme
451
456
```kusto
452
457
// Set these parameters before running query
453
458
let workspaceHasSecurityCenter = true; // Specify if the workspace has Azure Security Center
454
-
let PerNodePrice = 15.; // Enter your price per node / month
459
+
let PerNodePrice = 15.; // Enter your montly price per monitored nodes
0 commit comments