Skip to content

Commit b6dcea2

Browse files
committed
replace missing files
1 parent 52af23e commit b6dcea2

File tree

9 files changed

+58
-57
lines changed

9 files changed

+58
-57
lines changed
59.6 KB
Loading
Loading
31.7 KB
Loading
Loading
58.2 KB
Loading
33.9 KB
Loading
20.7 KB
Loading
83.9 KB
Loading

articles/virtual-machines/extensions/oms-windows.md

Lines changed: 58 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ The following table provides a mapping of the version of the Windows Log Analyti
3232

3333
| Log Analytics Windows agent bundle version | Log Analytics Windows VM extension version | Release Date | Release Notes |
3434
|--------------------------------|--------------------------|--------------------------|--------------------------|
35+
| 10.20.18029 | 1.0.18029 | March 2020 | <ul><li>Adds SHA-2 code signing support</li><li>Improves VM extension installation and management</li><li>Resolves a bug in Azure Arc for Servers integration</li><li>Adds a built-in troubleshooting tool for customer support</li><li>Adds support for additional Azure Government regions</li> |
3536
| 10.20.18018 | 1.0.18018 | October 2019 | <ul><li> Minor bug fixes and stabilization improvements </li></ul> |
3637
| 10.20.18011 | 1.0.18011 | July 2019 | <ul><li> Minor bug fixes and stabilization improvements </li><li> Increased MaxExpressionDepth to 10000 </li></ul> |
3738
| 10.20.18001 | 1.0.18001 | June 2019 | <ul><li> Minor bug fixes and stabilization improvements </li><li> Added ability to disable default credentials when making proxy connection (support for WINHTTP_AUTOLOGON_SECURITY_LEVEL_HIGH) </li></ul>|
@@ -57,25 +58,25 @@ The following JSON shows the schema for the Log Analytics agent extension. The e
5758

5859
```json
5960
{
60-
"type": "extensions",
61-
"name": "OMSExtension",
62-
"apiVersion": "[variables('apiVersion')]",
63-
"location": "[resourceGroup().location]",
64-
"dependsOn": [
65-
"[concat('Microsoft.Compute/virtualMachines/', variables('vmName'))]"
66-
],
67-
"properties": {
68-
"publisher": "Microsoft.EnterpriseCloud.Monitoring",
69-
"type": "MicrosoftMonitoringAgent",
70-
"typeHandlerVersion": "1.0",
71-
"autoUpgradeMinorVersion": true,
72-
"settings": {
73-
"workspaceId": "myWorkSpaceId"
74-
},
75-
"protectedSettings": {
76-
"workspaceKey": "myWorkspaceKey"
77-
}
78-
}
61+
"type": "extensions",
62+
"name": "OMSExtension",
63+
"apiVersion": "[variables('apiVersion')]",
64+
"location": "[resourceGroup().location]",
65+
"dependsOn": [
66+
"[concat('Microsoft.Compute/virtualMachines/', variables('vmName'))]"
67+
],
68+
"properties": {
69+
"publisher": "Microsoft.EnterpriseCloud.Monitoring",
70+
"type": "MicrosoftMonitoringAgent",
71+
"typeHandlerVersion": "1.0",
72+
"autoUpgradeMinorVersion": true,
73+
"settings": {
74+
"workspaceId": "myWorkSpaceId"
75+
},
76+
"protectedSettings": {
77+
"workspaceKey": "myWorkspaceKey"
78+
}
79+
}
7980
}
8081
```
8182
### Property values
@@ -108,51 +109,51 @@ The following example assumes the Log Analytics extension is nested inside the v
108109

109110
```json
110111
{
111-
"type": "extensions",
112-
"name": "OMSExtension",
113-
"apiVersion": "[variables('apiVersion')]",
114-
"location": "[resourceGroup().location]",
115-
"dependsOn": [
116-
"[concat('Microsoft.Compute/virtualMachines/', variables('vmName'))]"
117-
],
118-
"properties": {
119-
"publisher": "Microsoft.EnterpriseCloud.Monitoring",
120-
"type": "MicrosoftMonitoringAgent",
121-
"typeHandlerVersion": "1.0",
122-
"autoUpgradeMinorVersion": true,
123-
"settings": {
124-
"workspaceId": "myWorkSpaceId"
125-
},
126-
"protectedSettings": {
127-
"workspaceKey": "myWorkspaceKey"
128-
}
129-
}
112+
"type": "extensions",
113+
"name": "OMSExtension",
114+
"apiVersion": "[variables('apiVersion')]",
115+
"location": "[resourceGroup().location]",
116+
"dependsOn": [
117+
"[concat('Microsoft.Compute/virtualMachines/', variables('vmName'))]"
118+
],
119+
"properties": {
120+
"publisher": "Microsoft.EnterpriseCloud.Monitoring",
121+
"type": "MicrosoftMonitoringAgent",
122+
"typeHandlerVersion": "1.0",
123+
"autoUpgradeMinorVersion": true,
124+
"settings": {
125+
"workspaceId": "myWorkSpaceId"
126+
},
127+
"protectedSettings": {
128+
"workspaceKey": "myWorkspaceKey"
129+
}
130+
}
130131
}
131132
```
132133

133134
When placing the extension JSON at the root of the template, the resource name includes a reference to the parent virtual machine, and the type reflects the nested configuration.
134135

135136
```json
136137
{
137-
"type": "Microsoft.Compute/virtualMachines/extensions",
138-
"name": "<parentVmResource>/OMSExtension",
139-
"apiVersion": "[variables('apiVersion')]",
140-
"location": "[resourceGroup().location]",
141-
"dependsOn": [
142-
"[concat('Microsoft.Compute/virtualMachines/', variables('vmName'))]"
143-
],
144-
"properties": {
145-
"publisher": "Microsoft.EnterpriseCloud.Monitoring",
146-
"type": "MicrosoftMonitoringAgent",
147-
"typeHandlerVersion": "1.0",
148-
"autoUpgradeMinorVersion": true,
149-
"settings": {
150-
"workspaceId": "myWorkSpaceId"
151-
},
152-
"protectedSettings": {
153-
"workspaceKey": "myWorkspaceKey"
154-
}
155-
}
138+
"type": "Microsoft.Compute/virtualMachines/extensions",
139+
"name": "<parentVmResource>/OMSExtension",
140+
"apiVersion": "[variables('apiVersion')]",
141+
"location": "[resourceGroup().location]",
142+
"dependsOn": [
143+
"[concat('Microsoft.Compute/virtualMachines/', variables('vmName'))]"
144+
],
145+
"properties": {
146+
"publisher": "Microsoft.EnterpriseCloud.Monitoring",
147+
"type": "MicrosoftMonitoringAgent",
148+
"typeHandlerVersion": "1.0",
149+
"autoUpgradeMinorVersion": true,
150+
"settings": {
151+
"workspaceId": "myWorkSpaceId"
152+
},
153+
"protectedSettings": {
154+
"workspaceKey": "myWorkspaceKey"
155+
}
156+
}
156157
}
157158
```
158159

0 commit comments

Comments
 (0)