你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Set-AzApplicationInsightsContinuousExport
创建 Application Insights 组件的连续导出配置。
语法
Set-AzApplicationInsightsContinuousExport
-ResourceGroupName <String>
-Name <String>
-ExportId <String>
[-SubscriptionId <String>]
[-DestinationType <String>]
[-NotificationQueueEnabled <String>]
[-NotificationQueueUri <String>]
[-DocumentType <String[]>]
[-StorageAccountId <String>]
[-StorageLocation <String>]
[-DisableConfiguration]
[-StorageSASUri <String>]
[-DefaultProfile <PSObject>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
创建 Application Insights 组件的连续导出配置。
示例
示例 1:更新连续导出配置
$sastoken = New-AzStorageContainerSASToken -Name testcontainer -Context $context -ExpiryTime (Get-Date).AddYears(50) -Permission w
$sasuri = "https://teststorageaccount.blob.core.windows.net/testcontainer" + $sastoken
Set-AzApplicationInsightsContinuousExport -ResourceGroupName "testgroup" -Name "test" `
-DocumentType "Request","Trace" -ExportId "jlTFEiBg1rkDXOCIeJQ2mB2TxZg=" -StorageAccountId "/subscriptions/50359d91-7b9d-4823-85af-eb298a61ba96/resourceGroups/testgroup/providers/Microsoft.Storage/storageAccounts/teststorageaccount" -StorageLocation sourcecentralus `
-StorageSASUri $sasuri -DestinationType Blob
更新资源组“testgroup”中资源“test”的连续导出配置“jlTFEiBg1rkDXOCIeJQ2mB2TxZg=”,以将“Request”和“Trace”文档导出到“teststorageaccount”中的存储容器“testcontainer”。SAS 令牌必须有效且对容器具有写入权限,否则连续导出功能将不起作用。 如果 SAS 令牌过期,则连续导出功能将停止工作。
参数
-Confirm
在运行 cmdlet 之前,提示你进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | PSObject |
别名: | AzureRMContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DestinationType
连续导出目标类型。 这必须是“Blob”。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DisableConfiguration
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DocumentType
要导出的文档类型,以逗号分隔值的形式。 允许的值包括“Requests”、“Custom Event”、“Exception”、“Metric”、“Page View”、“Page Load”、“Dependency”、“Performance Counter”、“Availability”、“Trace”。
类型: | String[] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ExportId
连续导出配置 ID。 这在 Application Insights 组件中是唯一的。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Name
Application Insights 组件资源的名称。
类型: | String |
别名: | ApplicationInsightsComponentName, ComponentName |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-NotificationQueueEnabled
荒废的
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-NotificationQueueUri
荒废的
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ResourceGroupName
资源组的名称。 名称不区分大小写。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-StorageAccountId
目标存储帐户的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-StorageLocation
目标存储容器的位置 ID。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-StorageSASUri
目标存储容器的 SAS URL。 它必须授予写入权限。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-SubscriptionId
目标订阅的 ID。
类型: | String |
Position: | Named |
默认值: | (Get-AzContext).Subscription.Id |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-WhatIf
显示 cmdlet 运行时会发生什么情况。 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |