|
1 | 1 | ---
|
2 | 2 | title: Network Watcher Agent VM extension - Linux
|
3 | 3 | 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 |
7 | 4 | author: halkazwini
|
8 | 5 | ms.author: halkazwini
|
| 6 | +ms.service: virtual-machines |
| 7 | +ms.subservice: extensions |
| 8 | +ms.topic: concept-article |
9 | 9 | ms.collection: linux
|
10 |
| -ms.date: 06/29/2023 |
| 10 | +ms.date: 03/26/2024 |
11 | 11 | ms.custom: devx-track-azurecli, linux-related-content
|
12 | 12 | ---
|
13 | 13 |
|
@@ -56,27 +56,28 @@ The following JSON shows the schema for the Network Watcher Agent extension. The
|
56 | 56 |
|
57 | 57 | ```json
|
58 | 58 | {
|
59 |
| - "type": "extensions", |
60 |
| - "name": "Microsoft.Azure.NetworkWatcher", |
| 59 | + "type": "Microsoft.Compute/virtualMachines/extensions", |
| 60 | + "name": "[concat(parameters('vmName'), '/AzureNetworkWatcherExtension')]", |
61 | 61 | "apiVersion": "[variables('apiVersion')]",
|
62 | 62 | "location": "[resourceGroup().location]",
|
63 | 63 | "dependsOn": [
|
64 | 64 | "[concat('Microsoft.Compute/virtualMachines/', variables('vmName'))]"
|
65 | 65 | ],
|
66 | 66 | "properties": {
|
| 67 | + "autoUpgradeMinorVersion": true, |
67 | 68 | "publisher": "Microsoft.Azure.NetworkWatcher",
|
68 | 69 | "type": "NetworkWatcherAgentLinux",
|
69 |
| - "typeHandlerVersion": "1.4", |
70 |
| - "autoUpgradeMinorVersion": true |
| 70 | + "typeHandlerVersion": "1.4" |
71 | 71 | }
|
72 | 72 | }
|
| 73 | + |
73 | 74 | ```
|
74 | 75 |
|
75 | 76 | ### Property values
|
76 | 77 |
|
77 | 78 | | Name | Value / Example |
|
78 | 79 | | ---- | ---- |
|
79 |
| -| apiVersion | 2022-11-01 | |
| 80 | +| apiVersion | 2023-03-01 | |
80 | 81 | | publisher | Microsoft.Azure.NetworkWatcher |
|
81 | 82 | | type | NetworkWatcherAgentLinux |
|
82 | 83 | | typeHandlerVersion | 1.4 |
|
@@ -116,6 +117,8 @@ The following example shows the deployment state of the NetworkWatcherAgentLinux
|
116 | 117 | az vm extension show --name NetworkWatcherAgentLinux --resource-group myResourceGroup1 --vm-name myVM1
|
117 | 118 | ```
|
118 | 119 |
|
119 |
| -### Support |
| 120 | +## Related content |
120 | 121 |
|
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