我们正在使用Azure app Insights中的智能检测器在我们的应用程序中存在异常时生成一些警报。然而,在我们的代码中有一些故意的失败,我们抛出了一个403。有没有办法在Application Insights中修改这些“智能警报”,以便在其检测逻辑中排除这些已知故障?我们有一个与这些预期故障相关的特定异常类型,如果有方法的话,我们可以很容易地使用它在异常检测中排除这些故障,但我在UI上找不到这样做的选项。
谢谢你的指点。
发布于 2021-07-14 13:31:18
您不能直接从Azure门户执行此操作,但您需要实现一个Telemetry Processor,它可以帮助您覆盖遥测属性集。
如果请求标志为失败,响应代码= 403。但如果您希望将其视为成功,则可以提供一个设置success属性的遥测初始化器。
定义初始化器
C#
using System;
using Microsoft.ApplicationInsights.Channel;
using Microsoft.ApplicationInsights.DataContracts;
using Microsoft.ApplicationInsights.Extensibility;
namespace MvcWebRole.Telemetry
{
/*
* Custom TelemetryInitializer that overrides the default SDK
* behavior of treating response codes >= 400 as failed requests
*
*/
public class MyTelemetryInitializer : ITelemetryInitializer
{
public void Initialize(ITelemetry telemetry)
{
var requestTelemetry = telemetry as RequestTelemetry;
// Is this a TrackRequest() ?
if (requestTelemetry == null) return;
int code;
bool parsed = Int32.TryParse(requestTelemetry.ResponseCode, out code);
if (!parsed) return;
if (code >= 400 && code < 500)
{
// If we set the Success property, the SDK won't change it:
requestTelemetry.Success = true;
// Allow us to filter these requests in the portal:
requestTelemetry.Properties["Overridden400s"] = "true";
}
// else leave the SDK to set the Success property
}
}
}在ApplicationInsights.config中:
XMLCopy
<ApplicationInsights>
<TelemetryInitializers>
<!-- Fully qualified type name, assembly name: -->
<Add Type="MvcWebRole.Telemetry.MyTelemetryInitializer, MvcWebRole"/>
...
</TelemetryInitializers>
</ApplicationInsights>有关更多信息,您可以参考此Document。
https://stackoverflow.com/questions/68232639
复制相似问题