Skip to content

Commit 572f02f

Browse files
committed
add https for health extension
1 parent 8b966e2 commit 572f02f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/virtual-machine-scale-sets/virtual-machine-scale-sets-health-extension.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ author: mimckitt
55
tags: azure-resource-manager
66
ms.service: virtual-machine-scale-sets
77
ms.topic: conceptual
8-
ms.date: 01/30/2019
8+
ms.date: 05/06/2020
99
ms.author: mimckitt
1010

1111
---
1212
# Using Application Health extension with virtual machine scale sets
13-
Monitoring your application health is an important signal for managing and upgrading your deployment. Azure virtual machine scale sets provide support for [rolling upgrades](virtual-machine-scale-sets-upgrade-scale-set.md#how-to-bring-vms-up-to-date-with-the-latest-scale-set-model) including [automatic OS-image upgrades](virtual-machine-scale-sets-automatic-upgrade.md), which rely on health monitoring of the individual instances to upgrade your deployment.
13+
Monitoring your application health is an important signal for managing and upgrading your deployment. Azure virtual machine scale sets provide support for [rolling upgrades](virtual-machine-scale-sets-upgrade-scale-set.md#how-to-bring-vms-up-to-date-with-the-latest-scale-set-model) including [automatic OS-image upgrades](virtual-machine-scale-sets-automatic-upgrade.md), which rely on health monitoring of the individual instances to upgrade your deployment. You can also use health extension to monitor the application health of each instance in your scale set and perform instance repairs using [automatic instance repairs](virtual-machine-scale-sets-automatic-instance-repairs.md).
1414

1515
This article describes how you can use the Application Health extension to monitor the health of your applications deployed on virtual machine scale sets.
1616

@@ -26,7 +26,7 @@ As the extension reports health from within a VM, the extension can be used in s
2626

2727
## Extension schema
2828

29-
The following JSON shows the schema for the Application Health extension. The extension requires at a minimum either a "tcp" or "http" request with an associated port or request path respectively.
29+
The following JSON shows the schema for the Application Health extension. The extension requires at a minimum either a "tcp", "http" or "https" request with an associated port or request path respectively.
3030

3131
```json
3232
{
@@ -61,9 +61,9 @@ The following JSON shows the schema for the Application Health extension. The ex
6161

6262
| Name | Value / Example | Data Type
6363
| ---- | ---- | ----
64-
| protocol | `http` or `tcp` | string |
65-
| port | Optional when protocol is `http`, mandatory when protocol is `tcp` | int |
66-
| requestPath | Mandatory when protocol is `http`, not allowed when protocol is `tcp` | string |
64+
| protocol | `http` or `https` or `tcp` | string |
65+
| port | Optional when protocol is `http` or `https`, mandatory when protocol is `tcp` | int |
66+
| requestPath | Mandatory when protocol is `http` or `https`, not allowed when protocol is `tcp` | string |
6767

6868
## Deploy the Application Health extension
6969
There are multiple ways of deploying the Application Health extension to your scale sets as detailed in the examples below.

0 commit comments

Comments
 (0)