gpt4 book ai didi

asp.net - 应用程序洞察 : Filter website health checks?

转载 作者:行者123 更新时间:2023-12-02 06:47:29 29 4
gpt4 key购买 nike

我正在免费使用 Azure Application Insights。我们还使用亚马逊 AWS 运行状况检查,该检查会命中预先确定的页面,期望收到 200 响应,然后在收到不同响应时执行操作。

来自 AWS 的所有请求都很快填满了遥测数据。

是否有一种简单的方法来过滤或排除这些请求?

是否可以从 App Insights 控制台完成,或者是否需要修改实际应用程序上的遥测收集器。我不想创建自己的 ITelemtryProcessor 实现...

如果我被困在这条路线上,这是否可以过滤 AWS Route53 检查?

public void Process(ITelemetry item)
{
if (!string.IsNullOrEmpty(item.Context.Operation.SyntheticSource)) {return;}
this.Next.Process(item);
}

编辑-更新

有人看过 applicationinsights.config 的这一部分吗?我不确定它没有相关 header 意味着什么。

 <ExcludeComponentCorrelationHttpHeadersOnDomains>
<!--
Requests to the following hostnames will not be modified by adding correlation headers.
This is only applicable if Profiler is installed via either StatusMonitor or Azure Extension.
Add entries here to exclude additional hostnames.
NOTE: this configuration will be lost upon NuGet upgrade.
-->
<Add>core.windows.net</Add>
<Add>core.chinacloudapi.cn</Add>
<Add>core.cloudapi.de</Add>
<Add>core.usgovcloudapi.net</Add>
<Add>localhost</Add>
<Add>127.0.0.1</Add>
</ExcludeComponentCorrelationHttpHeadersOnDomains>

有没有人有任何其他资源或教程,我唯一能找到的资源或教程:https://learn.microsoft.com/en-us/azure/application-insights/app-insights-api-filtering-sampling#filtering

看来最简单的实现方法是从 web.config 中获取一个集合,在自己的类文件中定义处理器,然后将处理器插入到全局配置的链中...

最佳答案

您必须像上面那样编写遥测初始化程序。

但是,您可能希望更具体地查看合成来源并验证内容,并且仅丢弃亚马逊健康检查而不是所有合成流量(您还可以查看请求名称等以做出你的决定),因为我不太确定来自亚马逊的入站请求中包含哪些信息。

否则,您可能会丢弃网络测试中可能出现的传入请求/依赖项/异常,这些请求/依赖项/异常也会显示为合成的。

关于asp.net - 应用程序洞察 : Filter website health checks?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46185801/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com