Azure PowerShell: Enable Application Diagnostics and Site Diagnostics

前端 未结 3 527
既然无缘
既然无缘 2021-01-14 21:17

I am configuring Diagnostics & IIS Logs for Azure Websites. Azure Manage Portal shows options to store Application Diagnostics to Azure Table Storage:

3条回答
  •  -上瘾入骨i
    2021-01-14 21:53

    This is apparently fixed in the latest (as of 3/21/2016) release of the Azure PowerShell cmdlets. You can now specify the table/container name, e.g.

    Enable-AzureWebsiteApplicationDiagnostic -Name -Slot production -StorageAccountName -BlobStorage -StorageBlobContainerName -LogLevel Verbose

    Enable-AzureWebsiteApplicationDiagnostic -Name -Slot production -StorageAccountName -TableStorage -StorageTableName -LogLevel Verbose

提交回复
热议问题