我们有一个 azure 云服务,它记录 Azure Application Insights 的所有异常。我们已设置将所有异常连续导出到 azure 存储表。最重要的是,我们有 Azure 流分析,它从存储 blob 中提取数据并将其推送到 Azure SQL 数据库。现在,问题是我们无法ParsedStack
将异常 json 正确转换/格式化为 varchar(max),以便我们可以将其插入数据库。
这是我们使用的流分析查询 -
SELECT
CASE
WHEN GetArrayLength(A.basicException) > 0
THEN GetRecordPropertyValue(GetArrayElement(A.basicException, 0), 'assembly')
ELSE ''
END AS ExceptionAssembly
,
CASE
WHEN GetArrayLength(A.basicException) > 0
THEN GetRecordPropertyValue(GetArrayElement(A.basicException, 0), 'exceptionType')
ELSE ''
END AS ExceptionType
,
CASE
WHEN GetArrayLength(A.basicException) > 0
THEN GetRecordPropertyValue(GetArrayElement(A.basicException, 0), 'parsedstack')
ELSE ''
END AS ParsedStack
,A.context.device.id as DeviceId
,A.context.device.type as DeviceType
,A.context.device.browser as Browser
,A.context.device.browserVersion as BrowserVersion
,A.context.location.country as Country
,A.context.location.province as Province
,A.context.location.city as City
INTO
myexceptionsoutput
FROM myexceptionsinput A
SQL 表中的所有值看起来都符合预期,但ParsedStack
列的值始终是Microsoft.EventProcessing.SteamR.Sql.ValueArray
编辑
添加 Exception 对象 json (完整版很长,所以修剪它更清楚) -
"basicException": [{
"assembly": "Anonymously Hosted DynamicMethods Assembly, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
"exceptionType": "System.ServiceModel.CommunicationObjectFaultedException",
"outerExceptionType": "System.ServiceModel.CommunicationObjectFaultedException",
"failedUserCodeAssembly": "Anonymously Hosted DynamicMethods Assembly, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
"exceptionGroup": "System.ServiceModel.CommunicationObjectFaultedException at lambda_method",
"count": 1,
"outerExceptionMessage": "The communication object, System.ServiceModel.Channels.ServiceChannel, cannot be used for communication because it is in the Faulted state."
},
{
"parsedStack": [{
"method": "System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage",
"assembly": "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
"level": 0,
"line": 0
},
{
"method": "System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke",
"assembly": "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
"level": 1,
"line": 0
},
{
"method": "System.IDisposable.Dispose",
"assembly": "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
"level": 2,
"line": 0
}],
"hasFullStack": true,
"id": "22349146",
}],
"internal": {
"data": {
"id": "bd6f2355-ed02-4883-abb9-d8ed6ceba646",
"documentVersion": "1.61"
}
}