Skip to content

Commit a504225

Browse files
Merge pull request #270225 from halkazwini/vm-agent-linux
Update JSON block
2 parents 3919551 + 137b730 commit a504225

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

articles/virtual-machines/extensions/network-watcher-linux.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: Network Watcher Agent VM extension - Linux
33
description: Deploy the Network Watcher Agent virtual machine extension on Linux virtual machines.
4-
ms.topic: conceptual
5-
ms.service: virtual-machines
6-
ms.subservice: extensions
74
author: halkazwini
85
ms.author: halkazwini
6+
ms.service: virtual-machines
7+
ms.subservice: extensions
8+
ms.topic: concept-article
99
ms.collection: linux
10-
ms.date: 06/29/2023
10+
ms.date: 03/26/2024
1111
ms.custom: devx-track-azurecli, linux-related-content
1212
---
1313

@@ -56,27 +56,28 @@ The following JSON shows the schema for the Network Watcher Agent extension. The
5656

5757
```json
5858
{
59-
"type": "extensions",
60-
"name": "Microsoft.Azure.NetworkWatcher",
59+
"type": "Microsoft.Compute/virtualMachines/extensions",
60+
"name": "[concat(parameters('vmName'), '/AzureNetworkWatcherExtension')]",
6161
"apiVersion": "[variables('apiVersion')]",
6262
"location": "[resourceGroup().location]",
6363
"dependsOn": [
6464
"[concat('Microsoft.Compute/virtualMachines/', variables('vmName'))]"
6565
],
6666
"properties": {
67+
"autoUpgradeMinorVersion": true,
6768
"publisher": "Microsoft.Azure.NetworkWatcher",
6869
"type": "NetworkWatcherAgentLinux",
69-
"typeHandlerVersion": "1.4",
70-
"autoUpgradeMinorVersion": true
70+
"typeHandlerVersion": "1.4"
7171
}
7272
}
73+
7374
```
7475

7576
### Property values
7677

7778
| Name | Value / Example |
7879
| ---- | ---- |
79-
| apiVersion | 2022-11-01 |
80+
| apiVersion | 2023-03-01 |
8081
| publisher | Microsoft.Azure.NetworkWatcher |
8182
| type | NetworkWatcherAgentLinux |
8283
| typeHandlerVersion | 1.4 |
@@ -116,6 +117,8 @@ The following example shows the deployment state of the NetworkWatcherAgentLinux
116117
az vm extension show --name NetworkWatcherAgentLinux --resource-group myResourceGroup1 --vm-name myVM1
117118
```
118119

119-
### Support
120+
## Related content
120121

121-
If you need more help at any point in this article, you can refer to the [Network Watcher documentation](../../network-watcher/index.yml), or contact the Azure experts on the [MSDN Azure and Stack Overflow forums](https://azure.microsoft.com/support/forums/). Alternatively, you can file an Azure support incident. Go to the [Azure support site](https://azure.microsoft.com/support/options/) and select **Get support**. For information about using Azure Support, see the [Microsoft Azure support FAQ](https://azure.microsoft.com/support/faq/).
122+
- [Update Azure Network Watcher extension to the latest version](network-watcher-update.md).
123+
- [Network Watcher documentation](../../network-watcher/index.yml).
124+
- [Microsoft Q&A - Network Watcher](/answers/topics/azure-network-watcher.html).

0 commit comments

Comments
 (0)