欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

如何在 ASP.Net Core 中使用 MiniProfiler

程序员文章站 2022-05-03 17:01:05
web应用程序的性能相信是大家普遍关心的一个问题,也相信大家有很多工具可用来分析应用程序的性能并能够找到其中的瓶颈,MiniProfiler 就是这个领域中的一款产品,它是一款简单的,功能强大的web应用分析工具,MiniProfiler 可用来帮助我们找到 慢查询, 慢响应 等问题。 MiniPr ......

web应用程序的性能相信是大家普遍关心的一个问题,也相信大家有很多工具可用来分析应用程序的性能并能够找到其中的瓶颈,miniprofiler 就是这个领域中的一款产品,它是一款简单的,功能强大的web应用分析工具,miniprofiler 可用来帮助我们找到 慢查询, 慢响应 等问题。

miniprofiler 可用在 asp.netasp.net core 中,这篇文章将会讨论如何使用 miniprofiler,并通过它找到应用程序的性能问题。

安装 miniprofiler

要想使用 miniprofiler,需要通过 nuget 引用 miniprofiler.aspnetcore.mvc 包,可以通过 visual studio 2019 的 nuget package manager 可视化界面安装 或者 通过 nuget package manager 命令行工具输入以下命令:

dotnet add package miniprofiler.aspnetcore.mvc

安装好之后,接下来就要将 miniprofiler 注入到 servicecollection 容器中,如下代码所示:

        // this method gets called by the runtime. use this method to add services to the container.
        public void configureservices(iservicecollection services)
        {
            services.addcontrollerswithviews();

            services.addminiprofiler(options => options.routebasepath = "/profiler");
        }

注入好之后,接下来就需要使用 useminiprofiler 扩展方法将其注入到 request pipeline 管道中,如下代码所示:

        public void configure(iapplicationbuilder app, iwebhostenvironment env, iloggerfactory loggerfactory)
        {
            app.useminiprofiler();

            app.useendpoints(endpoints =>
            {
                endpoints.mapcontrollerroute(
                    name: "default",
                    pattern: "{controller=home}/{action=index}/{id?}");
            });
        }

然后在 _layout.cshtml 页面中增加如下两行命令。

@using stackexchange.profiling
@addtaghelper *, miniprofiler.aspnetcore.mvc

最后需要在 webpage 中指定 miniprofiler 分析窗口应该显示的位置,那如何做呢? 在 body 标签内使用 mini-profiler 标记,如下代码所示:

<mini-profiler position="@renderposition.right" max-traces="5" />

在 asp.net core mvc 中使用 miniprofiler

miniprofiler 会提供 页面加载时间数据库查询性能指标,接下来把程序跑起来,你会看到如下的性能指标图。

如何在 ASP.Net Core 中使用 MiniProfiler

有些朋友可能就要问了,大体时间我是知道了,那如果我只想获取某一指定代码块的执行时间呢? 当然也是可以的,下面的代码展示了如何去实现。

    public class homecontroller : controller
    {
        ilogger<homecontroller> logger;

        public homecontroller(ilogger<homecontroller> logger)
        {
            this.logger = logger;
        }

        public iactionresult index()
        {
            var miniprofiler = miniprofiler.current;
            list<author> authors = new list<author>();

            miniprofiler.renderincludes(this.httpcontext);

            using (miniprofiler.step("get authors"))
            {
                authors.add(new author() { id = 1, firstname = "joydip", lastname = "kanjilal", address = "hyderabad, india" });
                authors.add(new author() { id = 2, firstname = "stephen", lastname = "smith", address = "ny, usa" });
                authors.add(new author() { id = 3, firstname = "anand", lastname = "narayanan", address = "chennai, india" });
                authors.add(new author() { id = 4, firstname = "steve", lastname = "jones", address = "london, uk" });
            }
            return view(authors);
        }
    }

    public class author
    {
        public int id { get; set; }
        public string firstname { get; set; }
        public string lastname { get; set; }
        public string address { get; set; }
    }

从上面的代码中可以看到,我用 using (miniprofiler.step("get authors")) 做了语句块标记,理论上 mini-profile 窗口上应该有类似 get authors 指标栏,接下来把程序跑起来,一起来看看效果。

如何在 ASP.Net Core 中使用 MiniProfiler

除了顺向操作,你也可以指定让某些代码块不要显示在 mini-profile 中,需要做的是调用 ignore() 即可,如下代码所示:

using (miniprofiler.current.ignore())
{
  // write code here that you don't
  // want miniprofiler to profile
}

使用 miniprofile 分析 ado.net 查询

除了做一些常规的页面分析,还可以直接对 ado.net 查询性能进行分析,这就