你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzOperationalInsightsStorageInsight
在工作区中创建 Storage Insight。
语法
New-AzOperationalInsightsStorageInsight
[-ResourceGroupName] <String>
[-WorkspaceName] <String>
[-Name] <String>
[-StorageAccountResourceId] <String>
[-StorageAccountKey] <String>
[[-Tables] <String[]>]
[[-Containers] <String[]>]
[-ETag <String>]
[-Tag <Hashtable>]
[-Force]
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
New-AzOperationalInsightsStorageInsight
[-Workspace] <PSWorkspace>
[-Name] <String>
[-StorageAccountResourceId] <String>
[-StorageAccountKey] <String>
[[-Tables] <String[]>]
[[-Containers] <String[]>]
[-ETag <String>]
[-Tag <Hashtable>]
[-Force]
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
New-AzOperationalInsightsStorageInsight cmdlet 在现有工作区中创建新的 Storage Insight。
示例
示例 1:按名称创建 Storage Insight
$Storage = Get-AzStorageAccount -ResourceGroupName "ContosoResourceGroup" -Name "ContosoStorage"
$StorageKey = ($Storage | Get-AzStorageAccountKey).Value[0]
New-AzOperationalInsightsStorageInsight -ResourceGroupName "ContosoResourceGroup" -WorkspaceName "MyWorkspace" -Name "MyStorageInsight" -StorageAccountResourceId $Storage.Id -StorageAccountKey $StorageKey -Tables @("WADWindowsEventLogsTable")
第一个命令使用 Get-AzStorageAccount cmdlet 获取名为 ContosoStorage 的存储帐户,然后将其存储在$Storage变量中。 第二个命令使用管道运算符获取指定的存储帐户密钥,然后将存储帐户存储在$StorageKey变量中,$Storage传递到 Get-AzStorageAccountKey cmdlet。 此示例检索第一个键。 若要检索另一个值,请使用 Value[1] 而不是 Value[0]。 最后一个命令在名为 MyWorkspace 的工作区中创建名为 MyStorageInsight 的存储见解。 此存储见解使用指定存储帐户资源中 WADWindowsEventLogsTable 表中的数据。
示例 2:使用工作区对象创建 Storage Insight
$Workspace = Get-AzOperationalInsightsWorkspace -ResourceGroupName "ContosoResourceGroup" -Name "MyWorkspace"
$Storage = Get-AzStorageAccount -ResourceGroupName "ContosoResourceGroup" -Name "ContosoStorage"
$StorageKey = ($Storage | Get-AzStorageAccountKey).Value[0]
New-AzOperationalInsightsStorageInsight -Workspace $Workspace -Name "MyStorageInsight" -StorageAccountResourceId $Storage.Id -StorageAccountKey $StorageKey -Tables @("WADWindowsEventLogsTable")
第一个命令使用 Get-AzOperationalInsightsWorkspace cmdlet 获取名为 MyWorkspace 的工作区,然后将其存储在$Workspace变量中。 第二个命令使用 Get-AzStorageAccount cmdlet 获取指定的存储帐户,然后将其存储在$Storage变量中。 第三个命令使用管道运算符获取指定的密钥,将$Storage中的存储帐户传递到 Get-AzStorageAccountKey cmdlet,然后将其存储在$StorageKey变量中。 此示例检索第一个键。 若要检索另一个值,请使用 Value[1] 而不是 Value[0]。 最后一个命令在$Workspace定义的工作区中创建名为 MyStorageInsight 的存储见解。 Storage Insight 使用指定存储帐户资源中 WADWindowsEventLogsTable 表中的数据。
参数
-Confirm
在运行 cmdlet 之前,提示你进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Containers
指定包含数据的容器列表。
类型: | String[] |
Position: | 7 |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-DefaultProfile
用于与 azure 通信的凭据、帐户、租户和订阅
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ETag
StorageInsight 的 ETag。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Force
强制命令运行而不要求用户确认。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
指定 Storage Insight 的名称。
类型: | String |
Position: | 3 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ResourceGroupName
指定包含工作区的 Azure 资源组的名称。
类型: | String |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-StorageAccountKey
指定存储帐户的访问密钥。
类型: | String |
Position: | 5 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-StorageAccountResourceId
指定存储帐户的 Azure 资源。 可以通过执行 Get-AzStorageAccount cmdlet 并访问结果的 Id 参数来检索此信息。
类型: | String |
Position: | 4 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Tables
指定提供数据的表的列表。
类型: | String[] |
Position: | 6 |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Tag
Storage Insight 的标记
类型: | Hashtable |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-WhatIf
显示 cmdlet 运行时会发生什么情况。 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Workspace
指定新 Storage Insight 的工作区。
类型: | PSWorkspace |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-WorkspaceName
指定现有工作区的名称。
类型: | String |
Position: | 2 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
输入
String[]