在 Azure PowerShell 中使用 Kusto cmdlet
PowerShell 脚本可以使用 Azure PowerShell Az.Kusto cmdlet 运行管理命令。
如果在本地运行 CLI,请按照这些步骤设置环境。
先决条件
- Azure 订阅。 创建 Azure 帐户。
- 遵循与你的环境相关的 Azure PowerShell 先决条件。 有关详细信息,请参阅安装 Azure PowerShell。
安装 az.Kusto cmdlet
若要安装 Az.Kusto cmdlet,请运行以下命令:
Install-Module -Name Az.Kusto -Repository PSGallery -Force
登录 Azure
若要开始使用 Az.Kusto cmdlet 管理群集,请启动 PowerShell 会话并运行 Connect-AzAccount -Environment AzureChinaCloud
以登录到 Azure:
Connect-AzAccount -Environment AzureChinaCloud
使用 Azure 帐户登录凭据登录到打开的浏览器窗口。 若要详细了解如何登录,请参阅使用 Azure PowerShell 登录。
设置订阅上下文
(可选)通过运行以下命令来设置订阅上下文,将 <SubscriptionId>
替换为你的群集的订阅 ID。 可以从 Azure 门户中你的群集的“概览”页获取群集的订阅 ID。
Set-AzContext -SubscriptionId "<SubscriptionId>"
运行 Kusto cmdlet
若要查看群集详细信息,请运行以下命令,将 <ClusterResourceID>
替换为你的群集的资源 ID。 可以从 Azure 门户中你的群集的“属性”页获取群集的资源 ID。
$resource_id = "<ClusterResourceID>"
$mycluster = Get-AzKustoCluster -InputObject $resource_id
$mycluster
如需所有可用的 cmdlet 的列表,请参阅 Az.Kusto cmdlet。