gpt4 book ai didi

powershell - Azure使用powershell如何获取实例计数

转载 作者:行者123 更新时间:2023-12-03 11:21:03 30 4
gpt4 key购买 nike

使用 powershell 如何获取实例计数。我已经尝试过这个示例代码

get-azuredeployment -slot Production | where {$_.RoleInstanceList -ne $null} | ft servicename, @{expression={$_.roleinstancelist.count}; label='Instance Count'; alignment='left'}

但这需要我输入服务名称。我如何获取要传递到那里的服务名称并获得完整的列表。

我尝试了 get-AzureVM 但它似乎重复了服务名称。

最佳答案

您需要 Get-AzureService cmdlet。

Get-AzureService | Get-AzureDeployment -Slot Production | where {$_.RoleInstanceList -ne $null} | ft servicename, @{expression={$_.roleinstancelist.count}; label='Instance Count'; alignment='left'}

关于powershell - Azure使用powershell如何获取实例计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24816622/

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