你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzOperationalInsightsStorageInsight
获取有关 Storage Insight 的信息。
语法
Get-AzOperationalInsightsStorageInsight
[-ResourceGroupName] <String>
[-WorkspaceName] <String>
[[-Name] <String>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzOperationalInsightsStorageInsight
[-Workspace] <PSWorkspace>
[[-Name] <String>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
Get-AzOperationalInsightsStorageInsight cmdlet 获取有关现有 Storage Insight 的信息。 如果指定了 Storage Insight 名称,此 cmdlet 将获取有关该 Storage Insight 的信息。 如果未指定名称,此 cmdlet 将获取有关工作区中所有存储见解的信息。
示例
示例 1:按名称获取 Storage Insight
Get-AzOperationalInsightsStorageInsight -Name "MyStorageInsight" -ResourceGroupName "ContosoResourceGroup" -WorkspaceName "ContosoWorkspace"
此命令从名为 ContosoWorkspace 的工作区中获取名为 MyStorageInsight 的存储见解。
示例 2:使用工作区对象获取 Storage Insight
$Workspace = Get-AzOperationalInsightsWorkspace -ResourceGroupName "ContosoResourceGroup" -Name "MyWorkspace"
Get-AzOperationalInsightsStorageInsight -Workspace $Workspace -Name "MyStorageInsight"
第一个命令使用 Get-AzOperationalInsightsWorkspace cmdlet 获取 Operational Insights 工作区,然后将其存储在$Workspace变量中。 第二个命令获取$Workspace中工作区名为 MyStorageInsight 的存储见解。
参数
-DefaultProfile
用于与 azure 通信的凭据、帐户、租户和订阅
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
指定 Storage Insight 名称。
类型: | String |
Position: | 3 |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-ResourceGroupName
指定 Azure 资源组的名称。
类型: | String |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Workspace
指定包含 Storage Insights 的工作区。
类型: | PSWorkspace |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-WorkspaceName
指定包含 Storage Insights 的工作区的名称。
类型: | String |
Position: | 2 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |