gpt4 book ai didi

powershell - 使用 PowerShell 在 Azure SQL 数据库中启用诊断

转载 作者:行者123 更新时间:2023-12-03 03:06:52 24 4
gpt4 key购买 nike

enter image description here

如何使用 PowerShell 在 Azure SQL 数据库中启用诊断?

我正在使用 Powershell 创建数据库,同时在创建数据库后,我想启用诊断日志,保留天数为 1

任何帮助,高度赞赏。

最佳答案

是的,我们可以使用PowerShell命令Set-AzureRmDiagnosticSetting来启用它,这是我的脚本:

$storage = Get-AzureRmStorageAccount -ResourceGroupName sql -Name jasondisk321
$storageid = $storage.id
$resoure = Find-AzureRmResource -ResourceNameContains "sql"
$id = $resoure.ResourceId
PS C:\windows\system32> Set-AzureRmDiagnosticSetting -ResourceId $id -StorageAccountId $storageid -RetentionEnabled $true -RetentionInDays "1" -Enabled $true


StorageAccountId : /subscriptions/5384xxxx-xxxx-xxxx-xxxx-xxxxe29axxxx/resourceGroups/sql/providers/Microsoft.Storage/storageAccounts/jasondisk321
ServiceBusRuleId :
Metrics : {Microsoft.Azure.Management.Insights.Models.MetricSettings}
Logs : {}
WorkspaceId :
Id : /subscriptions/5384xxxx-xxxx-xxxx-xxxx-xxxxe29axxxx/resourcegroups/sql/providers/microsoft.sql/servers/jason321/databases/jasonsql/providers/microsoft.insights/diagnosticSettings/service
Name : service
Type :
Location :
Tags :

关于powershell - 使用 PowerShell 在 Azure SQL 数据库中启用诊断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43751066/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com