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/template-workspace-configuration.md
+45-9Lines changed: 45 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ ms.subservice: logs
6
6
ms.topic: conceptual
7
7
author: bwren
8
8
ms.author: bwren
9
-
ms.date: 10/22/2019
9
+
ms.date: 01/09/2020
10
10
11
11
---
12
12
@@ -16,7 +16,7 @@ ms.date: 10/22/2019
16
16
17
17
You can use [Azure Resource Manager templates](../../azure-resource-manager/templates/template-syntax.md) to create and configure Log Analytics workspaces in Azure Monitor. Examples of the tasks you can perform with templates include:
18
18
19
-
* Create a workspace including setting pricing tier
19
+
* Create a workspace including setting pricing tier and capacity reservation
20
20
* Add a solution
21
21
* Create saved searches
22
22
* Create a computer group
@@ -43,7 +43,19 @@ The following table lists the API version for the resources used in this example
43
43
44
44
## Create a Log Analytics workspace
45
45
46
-
The following example creates a workspace using a template from your local machine. The JSON template is configured to only require the name and location of the new workspace (using the default values for the other workspace parameters such as pricing tier and retention).
46
+
The following example creates a workspace using a template from your local machine. The JSON template is configured to only require the name and location of the new workspace. It uses values specified for other workspace parameters such as [access control mode](design-logs-deployment.md#access-control-mode), pricing tier, retention, and capacity reservation level.
47
+
48
+
For capacity reservation, you define a selected capacity reservation for ingesting data by specifying the SKU `CapacityReservation` and a value in GB for the property `capacityReservationLevel`. The following list details the supported values and behavior when configuring it.
49
+
50
+
- Once you set the reservation limit, you cannot change to a different SKU within 31 days.
51
+
52
+
- Once you set the reservation value, you can only increase it within 31 days.
53
+
54
+
- You can only set the value of `capacityReservationLevel` in multiples of 100, with a maximum value of 50000.
55
+
56
+
- If you increase the reservation level, the timer is reset and you cannot change it for another 31 days from this update.
57
+
58
+
- If you modify any other property for the workspace but retain the reservation limit to the same level, the timer is not reset.
47
59
48
60
### Create and deploy template
49
61
@@ -60,6 +72,21 @@ The following example creates a workspace using a template from your local mach
60
72
"description": "Specifies the name of the workspace."
61
73
}
62
74
},
75
+
"pricingTier": {
76
+
"type": "string",
77
+
"allowedValues": [
78
+
"pergb2018",
79
+
"Free",
80
+
"Standalone",
81
+
"PerNode",
82
+
"Standard",
83
+
"Premium"
84
+
],
85
+
"defaultValue": "pergb2018",
86
+
"metadata": {
87
+
"description": "Pricing tier: PerGB2018 or legacy tiers (Free, Standalone, PerNode, Standard or Premium) which are not available to all customers."
88
+
}
89
+
},
63
90
"location": {
64
91
"type": "String",
65
92
"allowedValues": [
@@ -97,11 +124,18 @@ The following example creates a workspace using a template from your local mach
0 commit comments