MiniProfiler не загружается, так как маршрут профилировщика не найден - PullRequest
0 голосов
/ 07 ноября 2019

Я установил MiniProfiler.Mvc5 nuget и вставил следующее:

web.config:

  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true" />
  </system.webServer>

RegisterGlobalFilters:

filters.Add(new StackExchange.Profiling.Mvc.ProfilingActionFilter());

Global.asax.cs

void Application_Start()
{
    MiniProfiler.Configure(new MiniProfilerOptions
    {
        RouteBasePath = "~/profiler",
    }
    .ExcludeType("SessionFactory")
    .ExcludeMethod("Flush")
    .AddViewProfiling());

    AreaRegistration.RegisterAllAreas();
    FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
    System.Web.Http.GlobalConfiguration.Configure(WebApiConfig.Register);
    RouteConfig.RegisterRoutes(RouteTable.Routes);
    BundleConfig.RegisterBundles(BundleTable.Bundles);
}
void Application_BeginRequest()
{
    MiniProfiler.StartNew();
}
void Application_End()
{
    MiniProfiler.Current?.Stop();
}

_Layout.cshtml

@MiniProfiler.Current.RenderIncludes()
</body>\

html:

<script async="async" id="mini-profiler" src="/profiler/includes.min.js?v=4.1.0+c940f0f28d" data-version="4.1.0+c940f0f28d" data-path="/profiler/" data-current-id="b0ff50dd-5d1d-4fc2-8bac-50d8f316fb03" data-ids="b0ff50dd-5d1d-4fc2-8bac-50d8f316fb03" data-position="Left" data-authorized="true" data-max-traces="15" data-toggle-shortcut="Alt+P" data-trivial-milliseconds="2.0" data-ignored-duplicate-execute-types="Open,OpenAsync,Close,CloseAsync"></script>

Получить 404 не найдено на http://localhost:64755/profiler/includes.min.js?v=4.1.0+c940f0f28d

Ответы [ 2 ]

0 голосов
/ 08 ноября 2019

Я переключился на использование Glimpse. Это намного проще в настройке. Просто ...

  1. установите Glimpse.Mvc5 nuget
  2. перейдите к http://localhost:port/Glimpse.axd для настройки остальных.
  3. done
0 голосов
/ 07 ноября 2019

Добавьте этот handlers тег в web.config под system.webServer:

<handlers>
    <add name="MiniProfiler" path="profiler/*" verb="*" type="System.Web.Routing.UrlRoutingModule" resourceType="Unspecified" preCondition="integratedMode" />
</handlers>
...