- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将 Azure Application Insights 用于网站(Azure 应用服务)。我正在使用集群 Umbraco 设置和 Hangfire。仅这两个人就每分钟都在访问数据库,并且淹没了我的“App Insights”。
所以我的问题是,如何禁用 Sql 依赖跟踪器?我查看了 ApplicationInsights.config,但找不到任何明显的东西。我可以看到 Microsoft.ApplicationInsights.DependencyCollector 可能是负责的,但我不想删除所有类型的依赖项遥测,仅 sql。
谢谢
最佳答案
这里最好的选择是使用遥测处理器来过滤掉某些类型的依赖请求。查看下面的这些资源以获取信息。
Sampling, filtering and preprocessing telemetry in the Application Insights SDK
Request filtering in Application Insights with Telemetry Processor
示例处理器可能如下所示。
using Microsoft.ApplicationInsights.Channel;
using Microsoft.ApplicationInsights.Extensibility;
using Microsoft.ApplicationInsights.DataContracts;
public class NoSQLDependencies : ITelemetryProcessor
{
private ITelemetryProcessor Next { get; set; }
// Link processors to each other in a chain.
public NoSQLDependencies(ITelemetryProcessor next)
{
this.Next = next;
}
public void Process(ITelemetry item)
{
if (IsSQLDependency(item)) { return; }
this.Next.Process(item);
}
private bool IsSQLDependency(ITelemetry item)
{
var dependency = item as DependencyTelemetry;
if (dependency?.DependencyTypeName == "SQL")
{
return true;
}
return false;
}
}
关于azure - 应用洞察 : Disable SQL Dependency telemetry,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38320886/
我在 opentelemetry/specification/trace/api 中找到了这个: If the language has support for implicitly propagat
我正在尝试使用 Scout使用我的 Flex 项目,为此我听说您将 -advanced-telemetry 添加到编译器参数中。当我这样做时,会出现此错误: 错误未知配置变量“高级遥测” 我这样做对还
我在前端应用程序中实现了应用程序洞察,我想根据一个可以在应用程序的生命周期内更改的变量来禁用/启用它。 (例如,用户拒绝 Application Insights 同意 => 禁用遥测) 我尝试的是:
我在前端应用程序中实现了应用程序洞察,我想根据一个可以在应用程序的生命周期内更改的变量来禁用/启用它。 (例如,用户拒绝 Application Insights 同意 => 禁用遥测) 我尝试的是:
我需要编写一段代码,其中包含参数“--telemetry.addr = 8080”和“--telemetry.path = / metrics”,它们的格式特别如此。 我的代码: package ma
我有一个使用 Microsoft.PowerShell.SDK 的 C# 测试项目。 NuGet 包。我用它来运行一个 cURL 命令,但我似乎无法使用 HttpClient (如果您有兴趣,可以查看
我正在将 Azure Application Insights 用于网站(Azure 应用服务)。我正在使用集群 Umbraco 设置和 Hangfire。仅这两个人就每分钟都在访问数据库,并且淹没了
我们将 Azure Application Insights 用于网站(Azure 应用服务),并且 SQL 依赖项日志正在填满日志。 我们已在 ApplicationInsights.config
在 Azure 通知中心的定价页面上: https://azure.microsoft.com/en-us/pricing/details/notification-hubs/ 它指出“标准命名空间可
我使用 Azure 的示例存储库来发送遥测数据:https://github.com/Azure/azure-iot-arduino/tree/master/examples/esp8266/ioth
启动我的应用程序后整整 60 秒,它因未捕获的异常而崩溃: libc++abi.dynlib: terminating app due to uncaught exception of type NS
我有一个使用 C#.Net 开发的 Azure 服务。当我编译解决方案时,它没有任何错误。 但是当我运行它时,它会抛出以下错误: Could not load type 'Microsoft.Appl
更新我的 ubuntu 系统时,我看到了以下消息。 **遥测 .NET Core 工具收集使用数据以帮助我们改善您的体验。数据是匿名的,不包括命令行参数。数据由 Microsoft 收集并与社区共享。
我有一个部署到 Azure 的现有 Web 角色。现在我想尝试 Application Insights,但我没有看到“将 Application Insights 遥测添加到项目”的选项。我安装了所
我正在 Google Cloud Platform 的 Cloud Run 中检测 node.js 服务。 我遇到了一个问题,即自定义跨度没有出现在 Trace 中。 我知道跟踪是有效的,因为 HTT
我正在研究 android studio 中 mapbox 中的示例,但是当我运行它显示的代码时失败:构建失败,出现异常。 Execution failed for task ':app:checkD
我正在尝试遵循Mapbox的Build a navigation app for Android,但是在“com.mapbox.services.android.telemetry”包内导入类时遇到了
我有一个现有的网络项目。我单击“将 Application Insights Telemetry 添加到项目”,并在该过程中的某个时刻引发了类似 '[...] 无法初始化 powershell 主机
我正在尝试将 Azure App Insights 与 Azure Function App (HttpTriggered) 集成。我想在请求表的“customDimensions”对象中添加我自己的
我正在学习mapbox,并且已经在kotlin和following mapbox tutorial之后实现了mapbox 但是当我运行代码时,我在运行真实设备时遇到异常 java.lang.NoCla
我是一名优秀的程序员,十分优秀!