├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── trace-analysis-failure.md └── workflows │ ├── examples-webapi-net6-container.yml │ └── examples-webapi-net7.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Configurations.md ├── EULA-GA.md ├── EULA-prerelease.md ├── LICENSE ├── ProfilerSessions.md ├── README.md ├── ReleaseNote.md ├── SECURITY.md ├── SupportMatrix.md ├── docs ├── CustomEventPipeProviders.md ├── MigrateTo2_0.md ├── Troubleshoot.md ├── WhatIsNew2_0.md └── dotnet-core-app-perf-01.md ├── examples ├── EnableServiceProfilerCLR2_1 │ ├── .dockerignore │ ├── AppInsightsProfilerExample.csproj │ ├── Controllers │ │ └── HomeController.cs │ ├── Dockerfile │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── README.md │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ └── banner3.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── EnableServiceProfilerForAzureFunction │ ├── Dockerfile │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Readme.md │ ├── SampleFunctionApp.cs │ ├── SampleFunctionApp.csproj │ ├── appsettings.json │ ├── dockerignore │ └── host.json ├── EnableServiceProfilerForContainerApp │ ├── .dockerignore │ ├── Controllers │ │ └── HomeController.cs │ ├── Dockerfile │ ├── EnableServiceProfilerForContainerApp.csproj │ ├── Models │ │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── README.md │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bundleconfig.json │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ ├── banner3.svg │ │ └── banner4.svg │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── EnableServiceProfilerForContainerAppNet6 │ ├── .dockerignore │ ├── Controllers │ │ └── WeatherForecastController.cs │ ├── EnableServiceProfilerForContainerAppNet6.csproj │ ├── Program.cs │ ├── Readme.md │ ├── RoleInstanceTelemetryInitializer.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── dockerfile │ └── images │ │ ├── Profiler_MachineInstance.png │ │ └── kudu_env.png ├── EnableServiceProfilerInVS │ ├── .media │ │ ├── AddApplicationInsights.png │ │ ├── AddNuGetPackageOfServiceProfiler.png │ │ ├── ApplicationInsightsConfigured.png │ │ ├── CreateAppService.png │ │ ├── DockerSupport.png │ │ ├── PublishTarget.png │ │ ├── ServiceProfilerLogInVSOutput.png │ │ ├── SetEnvInPortal.png │ │ └── performance-blade.png │ ├── EnableSPInVS │ │ ├── .dockerignore │ │ ├── EnableSPInVS.sln │ │ ├── EnableSPInVS │ │ │ ├── Connected Services │ │ │ │ └── Application Insights │ │ │ │ │ └── ConnectedService.json │ │ │ ├── Controllers │ │ │ │ └── HomeController.cs │ │ │ ├── Dockerfile │ │ │ ├── EnableSPInVS.csproj │ │ │ ├── Models │ │ │ │ └── ErrorViewModel.cs │ │ │ ├── Program.cs │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ │ ├── Home │ │ │ │ │ ├── About.cshtml │ │ │ │ │ ├── Contact.cshtml │ │ │ │ │ └── Index.cshtml │ │ │ │ ├── Shared │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── bundleconfig.json │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ ├── site.css │ │ │ │ └── site.min.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── images │ │ │ │ ├── banner1.svg │ │ │ │ ├── banner2.svg │ │ │ │ ├── banner3.svg │ │ │ │ └── banner4.svg │ │ │ │ ├── js │ │ │ │ ├── site.js │ │ │ │ └── site.min.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── npm.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── .bower.json │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ └── jquery │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ ├── docker-compose.dcproj │ │ ├── docker-compose.override.yml │ │ └── docker-compose.yml │ └── README.md ├── EnableServiceProfilerInVSCLR2_1 │ ├── .dockerignore │ ├── .media │ │ ├── AddApplicationInsights.png │ │ ├── AddNuGetPackageOfServiceProfiler.png │ │ ├── ApplicationInsightsConfigured.png │ │ ├── CreateAppService.png │ │ ├── DockerSupport.png │ │ ├── PublishTarget.png │ │ ├── ServiceProfilerLogInVSOutput.png │ │ ├── SetEnvInPortal.png │ │ ├── V2 │ │ │ ├── 001_NewProject.png │ │ │ └── 005_AddNuGetPackages.png │ │ └── performance-blade.png │ ├── AppInsightsProfilerExample.sln │ ├── AppInsightsProfilerExample │ │ ├── AppInsightsProfilerExample.csproj │ │ ├── Connected Services │ │ │ └── Application Insights │ │ │ │ └── ConnectedService.json │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ ├── Dockerfile │ │ ├── Models │ │ │ └── ErrorViewModel.cs │ │ ├── Program.cs │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ ├── Contact.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── Privacy.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── site.css │ │ │ └── site.min.css │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ ├── banner1.svg │ │ │ ├── banner2.svg │ │ │ └── banner3.svg │ │ │ ├── js │ │ │ ├── site.js │ │ │ └── site.min.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── .bower.json │ │ │ ├── LICENSE.txt │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── .bower.json │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ │ └── jquery │ │ │ ├── .bower.json │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ ├── README.md │ ├── docker-compose.dcproj │ ├── docker-compose.override.yml │ └── docker-compose.yml ├── EnableServiceProfilerInVSCLR2_2_Win │ ├── .media │ │ ├── 001_CreateProject.png │ │ ├── 003_AI_Enabled.png │ │ ├── 005_NuGets.png │ │ ├── 006_DebuggingKestrel.png │ │ └── 007_ServiceProfilerLogging.png │ ├── EnableSPInVSWin.sln │ ├── EnableSPInVSWin │ │ ├── Connected Services │ │ │ └── Application Insights │ │ │ │ └── ConnectedService.json │ │ ├── Controllers │ │ │ └── ValuesController.cs │ │ ├── EnableSPInVSWin.csproj │ │ ├── Program.cs │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ └── README.md ├── EnableServiceProfilerNet7 │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── WeatherForecastController.cs │ ├── EnableServiceProfilerNet7.csproj │ ├── Program.cs │ ├── Readme.md │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── dockerfile │ └── global.json ├── EnableServiceProfilerNet8 │ ├── .gitignore │ ├── EnableServiceProfilerNet8.csproj │ ├── Program.cs │ ├── Readme.md │ ├── appsettings.Development.json │ ├── appsettings.json │ └── query.http ├── HostingStartupCLR3 │ ├── .dockerignore │ ├── .gitignore │ ├── Controllers │ │ └── WeatherForecastController.cs │ ├── Dockerfile │ ├── Program.cs │ ├── Readme.md │ ├── ServiceProfiler.EventPipe.DockerApp30HS.csproj │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ └── media │ │ ├── AppSettings.png │ │ └── EnableLogs.png ├── PerfIssueLib │ └── HeavyArrayForecast │ │ ├── HeavyArrayForecast.csproj │ │ ├── Readme.md │ │ ├── WeatherForecast.cs │ │ └── WeatherForecastHelper.cs ├── QuickStart3_0 │ ├── .dockerignore │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Controllers │ │ └── WeatherForecastController.cs │ ├── Program.cs │ ├── QuickStart3_0.csproj │ ├── Readme.md │ ├── Readme2.md │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── dockerfile ├── QuickStart3_1 │ ├── Controllers │ │ └── WeatherForecastController.cs │ ├── Program.cs │ ├── QuickStart3_1.csproj │ ├── Readme.md │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ └── test.http ├── ReReleaseNuGet │ ├── .gitignore │ ├── Readme.md │ ├── SharedLib │ │ └── SharedLib.csproj │ ├── WebAPI │ │ ├── Controllers │ │ │ └── WeatherForecastController.cs │ │ ├── Program.cs │ │ ├── WeatherForecast.cs │ │ ├── WebAPI.csproj │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ └── nuget.config └── ServiceProfilerInWorkerNet6 │ ├── .gitignore │ ├── Program.cs │ ├── Readme.md │ ├── ServiceProfilerInWorkerNet6.csproj │ ├── Worker.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── global.json └── media ├── CodeOptimizations.png ├── OnDemandProfilerTrace.png ├── OneTimeProfilerTrace.png ├── Troubleshoot-UploaderCannotBeExtracted.png ├── Troubleshoot-UploaderLocator.png ├── issue-enable-profiler.PNG ├── performance-blade.png └── profiler-traces.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/trace-analysis-failure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/.github/ISSUE_TEMPLATE/trace-analysis-failure.md -------------------------------------------------------------------------------- /.github/workflows/examples-webapi-net6-container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/.github/workflows/examples-webapi-net6-container.yml -------------------------------------------------------------------------------- /.github/workflows/examples-webapi-net7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/.github/workflows/examples-webapi-net7.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/Configurations.md -------------------------------------------------------------------------------- /EULA-GA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/EULA-GA.md -------------------------------------------------------------------------------- /EULA-prerelease.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/EULA-prerelease.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/LICENSE -------------------------------------------------------------------------------- /ProfilerSessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/ProfilerSessions.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/ReleaseNote.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SupportMatrix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/SupportMatrix.md -------------------------------------------------------------------------------- /docs/CustomEventPipeProviders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/docs/CustomEventPipeProviders.md -------------------------------------------------------------------------------- /docs/MigrateTo2_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/docs/MigrateTo2_0.md -------------------------------------------------------------------------------- /docs/Troubleshoot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/docs/Troubleshoot.md -------------------------------------------------------------------------------- /docs/WhatIsNew2_0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/docs/WhatIsNew2_0.md -------------------------------------------------------------------------------- /docs/dotnet-core-app-perf-01.md: -------------------------------------------------------------------------------- 1 | # .NET Core application Performance Profiling 2 | 3 | -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/.dockerignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/AppInsightsProfilerExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/AppInsightsProfilerExample.csproj -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/Controllers/HomeController.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/Dockerfile -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/Program.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/README.md -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/Startup.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/Views/Home/About.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/appsettings.Development.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/appsettings.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/css/site.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/favicon.ico -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/js/site.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerCLR2_1/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForAzureFunction/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForAzureFunction/Dockerfile -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForAzureFunction/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForAzureFunction/Program.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForAzureFunction/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForAzureFunction/Properties/launchSettings.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForAzureFunction/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForAzureFunction/Readme.md -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForAzureFunction/SampleFunctionApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForAzureFunction/SampleFunctionApp.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForAzureFunction/SampleFunctionApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForAzureFunction/SampleFunctionApp.csproj -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForAzureFunction/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForAzureFunction/appsettings.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForAzureFunction/dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForAzureFunction/dockerignore -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForAzureFunction/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForAzureFunction/host.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/.dockerignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/Dockerfile -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/EnableServiceProfilerForContainerApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/EnableServiceProfilerForContainerApp.csproj -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/Program.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/README.md -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/Startup.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/Views/Home/About.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/appsettings.Development.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/appsettings.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/bundleconfig.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/css/site.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerApp/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerAppNet6/.dockerignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerAppNet6/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerAppNet6/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerAppNet6/EnableServiceProfilerForContainerAppNet6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerAppNet6/EnableServiceProfilerForContainerAppNet6.csproj -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerAppNet6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerAppNet6/Program.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerAppNet6/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerAppNet6/Readme.md -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerAppNet6/RoleInstanceTelemetryInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerAppNet6/RoleInstanceTelemetryInitializer.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerAppNet6/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerAppNet6/WeatherForecast.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerAppNet6/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerAppNet6/appsettings.Development.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerAppNet6/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerAppNet6/appsettings.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerAppNet6/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerAppNet6/dockerfile -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerAppNet6/images/Profiler_MachineInstance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerAppNet6/images/Profiler_MachineInstance.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerForContainerAppNet6/images/kudu_env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerForContainerAppNet6/images/kudu_env.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/.media/AddApplicationInsights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/.media/AddApplicationInsights.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/.media/AddNuGetPackageOfServiceProfiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/.media/AddNuGetPackageOfServiceProfiler.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/.media/ApplicationInsightsConfigured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/.media/ApplicationInsightsConfigured.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/.media/CreateAppService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/.media/CreateAppService.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/.media/DockerSupport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/.media/DockerSupport.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/.media/PublishTarget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/.media/PublishTarget.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/.media/ServiceProfilerLogInVSOutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/.media/ServiceProfilerLogInVSOutput.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/.media/SetEnvInPortal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/.media/SetEnvInPortal.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/.media/performance-blade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/.media/performance-blade.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/.dockerignore -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS.sln -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Connected Services/Application Insights/ConnectedService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Connected Services/Application Insights/ConnectedService.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Controllers/HomeController.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Dockerfile -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/EnableSPInVS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/EnableSPInVS.csproj -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Program.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Startup.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Views/Home/About.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/appsettings.Development.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/appsettings.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/bundleconfig.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/css/site.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/favicon.ico -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/EnableSPInVS/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/docker-compose.dcproj -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/docker-compose.override.yml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/EnableSPInVS/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/EnableSPInVS/docker-compose.yml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVS/README.md -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/.dockerignore -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/.media/AddApplicationInsights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/.media/AddApplicationInsights.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/.media/AddNuGetPackageOfServiceProfiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/.media/AddNuGetPackageOfServiceProfiler.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/.media/ApplicationInsightsConfigured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/.media/ApplicationInsightsConfigured.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/.media/CreateAppService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/.media/CreateAppService.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/.media/DockerSupport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/.media/DockerSupport.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/.media/PublishTarget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/.media/PublishTarget.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/.media/ServiceProfilerLogInVSOutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/.media/ServiceProfilerLogInVSOutput.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/.media/SetEnvInPortal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/.media/SetEnvInPortal.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/.media/V2/001_NewProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/.media/V2/001_NewProject.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/.media/V2/005_AddNuGetPackages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/.media/V2/005_AddNuGetPackages.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/.media/performance-blade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/.media/performance-blade.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample.sln -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/AppInsightsProfilerExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/AppInsightsProfilerExample.csproj -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Connected Services/Application Insights/ConnectedService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Connected Services/Application Insights/ConnectedService.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Controllers/HomeController.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Dockerfile -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Program.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Startup.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/Home/About.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/appsettings.Development.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/appsettings.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/css/site.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/js/site.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/AppInsightsProfilerExample/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/README.md -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/docker-compose.dcproj -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/docker-compose.override.yml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_1/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_1/docker-compose.yml -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_2_Win/.media/001_CreateProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_2_Win/.media/001_CreateProject.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_2_Win/.media/003_AI_Enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_2_Win/.media/003_AI_Enabled.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_2_Win/.media/005_NuGets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_2_Win/.media/005_NuGets.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_2_Win/.media/006_DebuggingKestrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_2_Win/.media/006_DebuggingKestrel.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_2_Win/.media/007_ServiceProfilerLogging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_2_Win/.media/007_ServiceProfilerLogging.png -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_2_Win/EnableSPInVSWin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_2_Win/EnableSPInVSWin.sln -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_2_Win/EnableSPInVSWin/Connected Services/Application Insights/ConnectedService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_2_Win/EnableSPInVSWin/Connected Services/Application Insights/ConnectedService.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_2_Win/EnableSPInVSWin/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_2_Win/EnableSPInVSWin/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_2_Win/EnableSPInVSWin/EnableSPInVSWin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_2_Win/EnableSPInVSWin/EnableSPInVSWin.csproj -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_2_Win/EnableSPInVSWin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_2_Win/EnableSPInVSWin/Program.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_2_Win/EnableSPInVSWin/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_2_Win/EnableSPInVSWin/Startup.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_2_Win/EnableSPInVSWin/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_2_Win/EnableSPInVSWin/appsettings.Development.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_2_Win/EnableSPInVSWin/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_2_Win/EnableSPInVSWin/appsettings.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerInVSCLR2_2_Win/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerInVSCLR2_2_Win/README.md -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet7/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet7/.vscode/launch.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet7/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet7/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet7/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet7/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet7/EnableServiceProfilerNet7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet7/EnableServiceProfilerNet7.csproj -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet7/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet7/Program.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet7/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet7/Readme.md -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet7/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet7/appsettings.Development.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet7/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet7/appsettings.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet7/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet7/dockerfile -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet7/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet7/global.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet8/.gitignore -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet8/EnableServiceProfilerNet8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet8/EnableServiceProfilerNet8.csproj -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet8/Program.cs -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet8/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet8/Readme.md -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet8/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet8/appsettings.Development.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet8/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet8/appsettings.json -------------------------------------------------------------------------------- /examples/EnableServiceProfilerNet8/query.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/EnableServiceProfilerNet8/query.http -------------------------------------------------------------------------------- /examples/HostingStartupCLR3/.dockerignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | global.json -------------------------------------------------------------------------------- /examples/HostingStartupCLR3/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | -------------------------------------------------------------------------------- /examples/HostingStartupCLR3/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/HostingStartupCLR3/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /examples/HostingStartupCLR3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/HostingStartupCLR3/Dockerfile -------------------------------------------------------------------------------- /examples/HostingStartupCLR3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/HostingStartupCLR3/Program.cs -------------------------------------------------------------------------------- /examples/HostingStartupCLR3/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/HostingStartupCLR3/Readme.md -------------------------------------------------------------------------------- /examples/HostingStartupCLR3/ServiceProfiler.EventPipe.DockerApp30HS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/HostingStartupCLR3/ServiceProfiler.EventPipe.DockerApp30HS.csproj -------------------------------------------------------------------------------- /examples/HostingStartupCLR3/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/HostingStartupCLR3/Startup.cs -------------------------------------------------------------------------------- /examples/HostingStartupCLR3/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/HostingStartupCLR3/WeatherForecast.cs -------------------------------------------------------------------------------- /examples/HostingStartupCLR3/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/HostingStartupCLR3/appsettings.Development.json -------------------------------------------------------------------------------- /examples/HostingStartupCLR3/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/HostingStartupCLR3/appsettings.json -------------------------------------------------------------------------------- /examples/HostingStartupCLR3/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/HostingStartupCLR3/global.json -------------------------------------------------------------------------------- /examples/HostingStartupCLR3/media/AppSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/HostingStartupCLR3/media/AppSettings.png -------------------------------------------------------------------------------- /examples/HostingStartupCLR3/media/EnableLogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/HostingStartupCLR3/media/EnableLogs.png -------------------------------------------------------------------------------- /examples/PerfIssueLib/HeavyArrayForecast/HeavyArrayForecast.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/PerfIssueLib/HeavyArrayForecast/HeavyArrayForecast.csproj -------------------------------------------------------------------------------- /examples/PerfIssueLib/HeavyArrayForecast/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/PerfIssueLib/HeavyArrayForecast/Readme.md -------------------------------------------------------------------------------- /examples/PerfIssueLib/HeavyArrayForecast/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/PerfIssueLib/HeavyArrayForecast/WeatherForecast.cs -------------------------------------------------------------------------------- /examples/PerfIssueLib/HeavyArrayForecast/WeatherForecastHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/PerfIssueLib/HeavyArrayForecast/WeatherForecastHelper.cs -------------------------------------------------------------------------------- /examples/QuickStart3_0/.dockerignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | -------------------------------------------------------------------------------- /examples/QuickStart3_0/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | global.json 4 | nuget.config 5 | pkgs/ -------------------------------------------------------------------------------- /examples/QuickStart3_0/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_0/.vscode/launch.json -------------------------------------------------------------------------------- /examples/QuickStart3_0/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_0/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/QuickStart3_0/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_0/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /examples/QuickStart3_0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_0/Program.cs -------------------------------------------------------------------------------- /examples/QuickStart3_0/QuickStart3_0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_0/QuickStart3_0.csproj -------------------------------------------------------------------------------- /examples/QuickStart3_0/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_0/Readme.md -------------------------------------------------------------------------------- /examples/QuickStart3_0/Readme2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_0/Readme2.md -------------------------------------------------------------------------------- /examples/QuickStart3_0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_0/Startup.cs -------------------------------------------------------------------------------- /examples/QuickStart3_0/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_0/WeatherForecast.cs -------------------------------------------------------------------------------- /examples/QuickStart3_0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_0/appsettings.Development.json -------------------------------------------------------------------------------- /examples/QuickStart3_0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_0/appsettings.json -------------------------------------------------------------------------------- /examples/QuickStart3_0/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_0/dockerfile -------------------------------------------------------------------------------- /examples/QuickStart3_1/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_1/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /examples/QuickStart3_1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_1/Program.cs -------------------------------------------------------------------------------- /examples/QuickStart3_1/QuickStart3_1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_1/QuickStart3_1.csproj -------------------------------------------------------------------------------- /examples/QuickStart3_1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_1/Readme.md -------------------------------------------------------------------------------- /examples/QuickStart3_1/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_1/Startup.cs -------------------------------------------------------------------------------- /examples/QuickStart3_1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_1/appsettings.Development.json -------------------------------------------------------------------------------- /examples/QuickStart3_1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_1/appsettings.json -------------------------------------------------------------------------------- /examples/QuickStart3_1/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/QuickStart3_1/global.json -------------------------------------------------------------------------------- /examples/QuickStart3_1/test.http: -------------------------------------------------------------------------------- 1 | GET http://localhost:5000/weatherforecast/ -------------------------------------------------------------------------------- /examples/ReReleaseNuGet/.gitignore: -------------------------------------------------------------------------------- 1 | Pkgs -------------------------------------------------------------------------------- /examples/ReReleaseNuGet/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/ReReleaseNuGet/Readme.md -------------------------------------------------------------------------------- /examples/ReReleaseNuGet/SharedLib/SharedLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/ReReleaseNuGet/SharedLib/SharedLib.csproj -------------------------------------------------------------------------------- /examples/ReReleaseNuGet/WebAPI/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/ReReleaseNuGet/WebAPI/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /examples/ReReleaseNuGet/WebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/ReReleaseNuGet/WebAPI/Program.cs -------------------------------------------------------------------------------- /examples/ReReleaseNuGet/WebAPI/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/ReReleaseNuGet/WebAPI/WeatherForecast.cs -------------------------------------------------------------------------------- /examples/ReReleaseNuGet/WebAPI/WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/ReReleaseNuGet/WebAPI/WebAPI.csproj -------------------------------------------------------------------------------- /examples/ReReleaseNuGet/WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/ReReleaseNuGet/WebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /examples/ReReleaseNuGet/WebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/ReReleaseNuGet/WebAPI/appsettings.json -------------------------------------------------------------------------------- /examples/ReReleaseNuGet/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/ReReleaseNuGet/nuget.config -------------------------------------------------------------------------------- /examples/ServiceProfilerInWorkerNet6/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.json 2 | Pkgs/* 3 | nuget.config -------------------------------------------------------------------------------- /examples/ServiceProfilerInWorkerNet6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/ServiceProfilerInWorkerNet6/Program.cs -------------------------------------------------------------------------------- /examples/ServiceProfilerInWorkerNet6/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/ServiceProfilerInWorkerNet6/Readme.md -------------------------------------------------------------------------------- /examples/ServiceProfilerInWorkerNet6/ServiceProfilerInWorkerNet6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/ServiceProfilerInWorkerNet6/ServiceProfilerInWorkerNet6.csproj -------------------------------------------------------------------------------- /examples/ServiceProfilerInWorkerNet6/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/ServiceProfilerInWorkerNet6/Worker.cs -------------------------------------------------------------------------------- /examples/ServiceProfilerInWorkerNet6/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/ServiceProfilerInWorkerNet6/appsettings.Development.json -------------------------------------------------------------------------------- /examples/ServiceProfilerInWorkerNet6/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/ServiceProfilerInWorkerNet6/appsettings.json -------------------------------------------------------------------------------- /examples/ServiceProfilerInWorkerNet6/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/examples/ServiceProfilerInWorkerNet6/global.json -------------------------------------------------------------------------------- /media/CodeOptimizations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/media/CodeOptimizations.png -------------------------------------------------------------------------------- /media/OnDemandProfilerTrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/media/OnDemandProfilerTrace.png -------------------------------------------------------------------------------- /media/OneTimeProfilerTrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/media/OneTimeProfilerTrace.png -------------------------------------------------------------------------------- /media/Troubleshoot-UploaderCannotBeExtracted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/media/Troubleshoot-UploaderCannotBeExtracted.png -------------------------------------------------------------------------------- /media/Troubleshoot-UploaderLocator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/media/Troubleshoot-UploaderLocator.png -------------------------------------------------------------------------------- /media/issue-enable-profiler.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/media/issue-enable-profiler.PNG -------------------------------------------------------------------------------- /media/performance-blade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/media/performance-blade.png -------------------------------------------------------------------------------- /media/profiler-traces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/ApplicationInsights-Profiler-AspNetCore/HEAD/media/profiler-traces.png --------------------------------------------------------------------------------