让 mvc-mini-profiler 忽略 Glimpse 请求

发布于 2024-11-28 10:03:56 字数 87 浏览 2 评论 0原文

我正在使用 mvc-mini-profiler 和 Glimpse。问题是 glimse 正在用一瞥请求淹没探查器输出。有什么办法可以忽略一瞥提出的所有请求吗?

I'm using mvc-mini-profiler along with Glimpse. The problem is glimse is flooding the profiler output with glimpse requests. Is there any way to ignore all request made by glimpse ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

三五鸿雁 2024-12-05 10:03:56
protected void Application_Start()
{
    var ignored = MiniProfiler.Settings.IgnoredPaths.ToList();
    ignored.Add("Glimpse.axd");
    MiniProfiler.Settings.IgnoredPaths = ignored.ToArray();
}

解决方案发布在这里:
迷你 MVC 分析器:似乎正在显示每个静态资源的配置文件时间

protected void Application_Start()
{
    var ignored = MiniProfiler.Settings.IgnoredPaths.ToList();
    ignored.Add("Glimpse.axd");
    MiniProfiler.Settings.IgnoredPaths = ignored.ToArray();
}

Solution Posted here:
Mini MVC profiler: appears to be displaying profile times for every static resource

呢古 2024-12-05 10:03:56

目前,如果您选择了“远程”选项卡或者当您的站点发出 Ajax 请求时,Glimpse 将发出 Ajax 请求。

这样做是因为当我们检测到发出请求时,我们会主动获取 Glimpse 数据。我们可能会在未来的版本中将其切换为更加懒惰,并且仅根据请求获取数据。

请注意,尽管这会有所帮助,但 Glimpse 仍会以与 Mini Profile 相同的方式回调服务器。因此,两个框架可能会尝试忽略对方的 ajax 请求。

希望这有帮助。

At the moment Glimpse will make Ajax requests if you have the Remote tab selected or when ever an Ajax request is made by your site.

This is done because when we detect that a request is made we proactively get the Glimpse data. We could probably switch this in a future release to be more lazy and only fetch the data on request.

Note, even though this will help, Glimpse will still be calling back to the server in the same way that Mini Profile does. Hence, both frameworks could probably try and ignore each other for ajax requests.

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文