Skip to content

Commit 7025dd7

Browse files
committed
removed screenshot
1 parent 486b039 commit 7025dd7

11 files changed

+9
-32
lines changed

articles/load-balancer/load-balancer-monitor-alert-health-event-logs.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ In this section, you learn configure diagnostic settings to collect LoadBalancer
3232
3333
1. In the Azure portal, navigate to your load balancer resource.
3434
1. From your load balancer resource's **Overview** page, choose **Monitoring** > **Diagnostic settings**.
35-
36-
:::image type="content" source="media/monitor-alert-load-balancer-health-event-logs/add-diagnostic-settings.png" alt-text="Screenshot of diagnostic settings window in Azure portal.":::
37-
3835
1. Select **+ Add diagnostic setting**.
3936
1. In the **Diagnostic setting** window, select or enter the following settings:
4037

@@ -62,12 +59,12 @@ In this section, you learn how to query LoadBalancerHealthEvent logs in a Log An
6259

6360
1. In the Azure portal, navigate to your load balancer resource.
6461
1. From your load balancer resource’s **Overview** page, choose **Monitoring** > **Logs**.
65-
3. In the **Queries** window, enter **Latest SNAT Port** in the search bar.
66-
4. From the results, select **Load to editor** under **Latest SNAT Port Exhaustion per LB Frontend**.
62+
1. In the **Queries** window, enter **Latest SNAT Port** in the search bar.
63+
1. From the results, select **Load to editor** under **Latest SNAT Port Exhaustion per LB Frontend**.
6764

6865
:::image type="content" source="media/monitor-alert-load-balancer-health-event-logs/search-queries.png" alt-text="Screenshot of Queries window performing search for built-in query.":::
6966

70-
5. The following code is displayed in the query editor:
67+
1. The following code is displayed in the query editor:
7168

7269
```kusto
7370
// Latest Snat Port Exhaustion Per LB Frontend
@@ -79,11 +76,10 @@ In this section, you learn how to query LoadBalancerHealthEvent logs in a Log An
7976
```
8077
:::image type="content" source="media/monitor-alert-load-balancer-health-event-logs/view-snat-query.png" alt-text="Screenshot of query editor with SNAT port exhaustion kusto query.":::
8178
82-
6. Select **Run** to execute the query.
79+
1. Select **Run** to execute the query.
8380
1. If you want to modify and save the query, make your query changes and select **Save**>**Save as query**.
8481
1. In the **Save a query** window, enter a name for the query, other optional information, and select **Save**.
8582
86-
:::image type="content" source="media/monitor-alert-load-balancer-health-event-logs/save-snat-query.png" alt-text="Screenshot of Save a query window.":::
8783
8884
## Create alerts based on LoadBalancerHealthEvent logs
8985

articles/load-balancer/tutorial-gateway-outbound-connectivity.md

Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -40,25 +40,16 @@ In this section, you chain an existing virtual machine’s public IP to a gatewa
4040
1. Under **Overview** of the public IP address, confirm that the SKU is **Standard**.
4141
1. Return to your virtual machine.
4242
1. In **Overview** of the virtual machine, select **Networking** > **Network settings**.
43-
1. Select the network interface attached to the virtual machine. This example uses **myvm1185_z1**.
44-
45-
:::image type="content" source="media/tutorial-gateway-outbound-connectivity/select-network-interface.png" alt-text="Screenshot of network interface attached to virtual machine.":::
46-
43+
1. Select the network interface attached to the virtual machine.
4744
1. In **Network interface**, select **IP configurations** under **Settings**.
48-
6. Under **IP settings**, select **myFrontend** from the **Gateway Load balancer** dropdown menu.
49-
50-
:::image type="content" source="media/tutorial-gateway-outbound-connectivity/select-gateway-load-balancer.png" alt-text="Screenshot of gateway load balancer selection in IP configuration settings.":::
51-
45+
1. Under **IP configurations**, select **myGWFrontend** from the **Gateway Load balancer** dropdown menu.
5246
1. Select **Save**.
5347

5448
## Create a load balancer frontend
5549

5650
In this section, you create a new frontend IP configuration for outbound traffic in our existing standard public load balancer. Using separate public IPs for inbound and outbound traffic is a recommend best practice. Reusing the same public IP for inbound and outbound traffic can increase the risk of SNAT exhaustion, as load balancing and inbound NAT rules decrease the number of available SNAT ports.
5751

5852
1. Navigate to **myLoadBalancer** or your existing standard public load balancer and go to the **Frontend IP configuration** under **Settings**.
59-
60-
:::image type="content" source="media/tutorial-gateway-outbound-connectivity/frontend-settings.png" alt-text="Screenshot of frontend IP configuration.":::
61-
6253
1. Select **+ Add** to create a new frontend IP configuration
6354
1. In the **Add frontend IP configuration** page, enter or select the following information:
6455

@@ -68,11 +59,7 @@ In this section, you create a new frontend IP configuration for outbound traffic
6859
| IP version | Select **IPv4**. |
6960
| IP type | Select **IP address**. |
7061
| Public IP address | <br> Select **Create new**.</br> <br/> In **Add a public IP address**, enter **myOutboundPublicIP** for name, and select **Ok**.<br/>|
71-
| Gateway Load balancer | Select **myGatewayLoadBalancerFrontEnd**. |
72-
73-
74-
:::image type="content" source="media/tutorial-gateway-outbound-connectivity/add-frontend-ip-configuration.png" alt-text="Screenshot of Add frontend ip configuration screen.":::
75-
62+
| Gateway Load balancer | Select **myGWFrontEnd**. |
7663
1. Select **Add**.
7764

7865
> [!NOTE]
@@ -82,10 +69,7 @@ In this section, you create a new frontend IP configuration for outbound traffic
8269
## Create outbound rule
8370

8471
1. In **Load balancer**, select **Outbound rules** under **Settings**.
85-
2. Select **+ Add** in **Outbound rules** to add a rule.
86-
87-
:::image type="content" source="media/tutorial-gateway-outbound-connectivity/outbound-rules.png" alt-text="Screenshot of Load Balancer Outbound rules settings.":::
88-
72+
1. Select **+ Add** in **Outbound rules** to add a rule.
8973
1. In **Add outbound rule** window, Enter or select the following information in:
9074

9175
| Setting | Value |
@@ -102,10 +86,6 @@ In this section, you create a new frontend IP configuration for outbound traffic
10286
| **Outbound ports** | |
10387
| Choose by | Select **Maximum number of backend instances**. |
10488
| Ports per instance | Enter the anticipated maximum number of backend instances. This example uses **2** backend instances.
105-
106-
107-
:::image type="content" source="media/tutorial-gateway-outbound-connectivity/add-outbound-rule.png" alt-text="Screenshot of Add Outbound Rule screen.":::
108-
10989
1. Select **Add**.
11090

11191
> [!IMPORTANT]

0 commit comments

Comments
 (0)