Skip to content

Commit 1e66367

Browse files
authored
Merge pull request #264262 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents c190f9a + 392bfc9 commit 1e66367

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

articles/container-instances/container-instances-log-analytics.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,19 @@ ContainerInstanceLog_CL
195195
|_ResourceId|string|A unique identifier for the resource that the record is associated with|
196196
|_SubscriptionId|string|A unique identifier for the subscription that the record is associated with|
197197

198+
## Using Diagnostic Settings
199+
200+
Diagnostic Settings for container groups is a preview feature and it can be enabled through preview features options in Azure portal. Once this feature is enabled for a subscription, Diagnostic Settings can be applied to a container group. Applying Diagnostic Settings will cause a container group to restart.
201+
202+
For example, here is how we can use New-AzDiagnosticSetting command to apply a Diagnostic Settings object to a container group.
203+
204+
```azurepowershell
205+
$log = @()
206+
$log += New-AzDiagnosticSettingLogSettingsObject -Enabled $true -Category ContainerInstanceLog -RetentionPolicyDay 7 -RetentionPolicyEnabled $true
207+
208+
New-AzDiagnosticSetting -Name test-setting -ResourceId <container-group-resource-id> -WorkspaceId <log-analytics-workspace-id> -Log $log
209+
```
210+
198211
## Next steps
199212

200213
### Azure Monitor logs

articles/container-instances/tutorial-docker-compose.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ In this tutorial, you use [Docker Compose](https://docs.docker.com/compose/) to
1515

1616
Run containers in Azure Container Instances on-demand when you develop cloud-native apps with Docker and you want to switch seamlessly from local development to cloud deployment. This capability is enabled by [integration between Docker and Azure](https://docs.docker.com/engine/context/aci-integration/). You can use native Docker commands to run either [a single container instance](quickstart-docker-cli.md) or multi-container group in Azure.
1717

18+
> [!IMPORTANT]
19+
> Docker Compose's integration for ACI has been retired in November 2023. See also: [Retirement Date Pending](https://github.com/docker/compose-cli?tab=readme-ov-file#warning-retirement-date-pending).
20+
1821
> [!IMPORTANT]
1922
> Not all features of Azure Container Instances are supported. Provide feedback about the Docker-Azure integration by creating an issue in the [Docker ACI Integration](https://github.com/docker/aci-integration-beta) GitHub repository.
2023

includes/azure-websites-limits.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ ms.author: msangapu
2626
| Custom domain [SSL support](../articles/app-service/configure-ssl-certificate.md) |Not supported, wildcard certificate for \*.azurewebsites.net available by default|Not supported, wildcard certificate for \*.azurewebsites.net available by default|Unlimited SNI SSL connections |Unlimited SNI SSL and 1 IP SSL connections included |Unlimited SNI SSL and 1 IP SSL connections included | Unlimited SNI SSL and 1 IP SSL connections included|
2727
| [Hybrid connections](../articles/app-service/app-service-hybrid-connections.md) | | | 5 per plan | 25 per plan | 220 per app | 220 per app |
2828
| [Virtual Network Integration](../articles/app-service/overview-vnet-integration.md) | | | X | X | X | X |
29-
| [Private Endpoints](../articles/app-service/networking/private-endpoint.md) | | | X | X | 100 per app | |
29+
| [Private Endpoints](../articles/app-service/networking/private-endpoint.md) | | | 100 per app | 100 per app | 100 per app | |
3030
| Integrated load balancer | |X |X |X |X |X<sup>9</sup> |
3131
| [Access restrictions](../articles/app-service/networking-features.md#access-restrictions) | 512 rules per app | 512 rules per app | 512 rules per app | 512 rules per app | 512 rules per app | 512 rules per app |
3232
| [Always On](../articles/app-service/configure-common.md) | | |X |X |X |X |

0 commit comments

Comments
 (0)